Thursday, January 3, 2008

JavaScript: execScript

The function allows u to run scripts at run time

Sample is as below:

<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>

No comments: