vote up 1 vote down star
1

Hi there!

How do I execute some Javascript that is a string?

function ExecuteJavascriptString()
{
    var s = "alert('hello')";
    // how do I get a browser to alert('hello')?
}

Many thanks!

flag

Thanks for the answers! – divinci Jun 2 at 12:57

8 Answers

vote up 4 vote down check

With eval(). See:

http://www.devguru.com/Technologies/ecmascript/quickref/eval.html

link|flag
vote up 14 vote down

The eval function will evaluate a string that is passed to it.

But the use of eval can be dangerous, so use with caution.

Edit: annakata has a good point -- Not only is eval dangerous, it is slow. This is because the code to be evaluated must be parsed on the spot, so that will take some computing resources.

link|flag
3  
super dangerous AND slow - you should bold, italic, underline, and h1 that – annakata Jun 2 at 13:00
1  
I'm doubtful that it's any slower than loading JavaScript anywhere else on the page, that has to be parsed as well. If it's slower, it it's because it's done in a different scope, which might force to creation of resources for that scope. – altCognito Jun 2 at 13:16
vote up 7 vote down

Use eval().

W3C documentation on eval.

You will probably get a lot of warnings about using this safely. do NOT allow users to inject ANYTHING into eval() as it is a huge security issue.

You'll also want to know that eval() has a different scope.

link|flag
vote up 3 vote down

Use eval as below. Eval should be used with caution, a simple search about "eval is evil" should throw some pointers.

function ExecuteJavascriptString()
{
    var s = "alert('hello')";
    eval(s);
}
link|flag
Good tip on that a simple search about "eval is evil" Thanks! – Optimal Solutions Jun 2 at 13:27
vote up 0 vote down

eval should do it.

eval(s);
link|flag
vote up 0 vote down
eval(s);

But this can be dangerous if you are taking data from users, although I suppose if they crash their own browser thats their problem.

link|flag
vote up 0 vote down
eval(s);

Remember though, that eval is very powerful and quite unsafe. You better be confident that the script you are executing is safe and unmutable by users.

link|flag
1  
In JS everything can be changed by the user just type "javascript:document.write("Hello World");" into almost any browser's address bar. – Unkwntech Jun 2 at 12:58
Yes, but you can make it harder for him by not using global variables, hiding your functions in closures etc. Also, by avoiding eval like the plague =) – Machine Jun 2 at 13:05
vote up 0 vote down

but is there any way to actually avoid eval() to the previous example?

link|flag
a) don't intend on ever executing javascript in strings, b) write your own "safe" javascript interpreter in javascript, to allow only executing safe code. BTW it's not considered good form on this site to post an answer that's not an answer. Use comments instead. – Jason S Jul 24 at 21:36

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.