Execute Javascript
<html> <body> <script language="JavaScript"> function function1() { var m = window.execScript("alert('test');", "JavaScript"); alert("The method returns always "+'"'+m+'"'); } </script> <input type="button" value="Click to execute the script" onclick="function1();"> </body> </html>