How do I execute some JavaScript that is a string?
function ExecuteJavascriptString() { var s = \"alert(\'hello\')\"; // how do I get a browser to al
New Function and apply() together works also
var a=new Function('alert(1);') a.apply(null)