up vote 2 down vote favorite
1
share [g+] share [fb]

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!

link|improve this question

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

9 Answers

up vote 7 down vote accepted

With eval(). See:

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

link|improve this answer
feedback

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|improve this answer
5  
super dangerous AND slow - you should bold, italic, underline, and h1 that – annakata Jun 2 '09 at 13:00
2  
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 '09 at 13:16
feedback

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|improve this answer
feedback

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|improve this answer
Good tip on that a simple search about "eval is evil" Thanks! – Optimal Solutions Jun 2 '09 at 13:27
feedback
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|improve this answer
exactly. Eval is dangerous on the server side. On the client... not so much. The user could just type in javascript:someevilcode in to the address of the browser and boom. Eval right there. – Esben Skov Pedersen Jan 29 '10 at 9:28
feedback

try this:

  var script = "<script type=\"text/javascript\"> content </script>";
  //using jquery next
  $('body').append(script);//incorporates and executes inmediatelly
  //personally i didnt test it. but seems to work.

good look;

link|improve this answer
feedback

eval should do it.

eval(s);
link|improve this answer
feedback
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|improve this answer
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 '09 at 12:58
1  
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 =) – PatrikAkerstrand Jun 2 '09 at 13:05
feedback

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

link|improve this answer
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 '09 at 21:36
feedback

Your Answer

 
or
required, but never shown

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