example.html - jscancer - Javascript crap (relatively small)
 (HTM) git clone git://git.codemadness.org/jscancer
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
       example.html (385B)
       ---
            1 <html>
            2 <head>
            3 </head>
            4 <body>
            5 <input type="button" id="test" value="Plop" />
            6 
            7 <script type="text/javascript" src="loadscript.js"></script>
            8 
            9 <script type="text/javascript">
           10 var el = document.getElementById("test");
           11 el.onclick = function() {
           12         scripts_load(["example_load.js"], function() {
           13                 test_init();
           14         });
           15         // this.style.display = "none"; // hide button.
           16 };
           17 </script>
           18 </body>
           19 </html>