<!DOCTYPE html> <html> <head> <!-- <script src="http://code.jquery.com/jquery-latest.js"></script> <link rel="stylesheet" type="text/css" href="tmp.css" /> --> <style type="text/css"> </style> <script type="text/javascript"> function Go() { var js=document.createElement('script'); js.text='function test() {alert("Ok");}' var oh=document.getElementsByTagName('head')[0]; oh.appendChild(js); test(); }; </script> </head> <body> <button onclick='Go()'>Go</button> </body> </html>