Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. <html>
  2. <head>
  3. <script type="text/javascript" src="user.js"></script>
  4. <script>
  5.   window.onload = function ()
  6.                         {
  7.                             initiate();
  8.                         };
  9. </script>
  10. </head>
  11. <body>
  12.  
  13. <div id="form">
  14. <p><strong>Hey there! tell us your name!</strong></p>
  15. <form onsubmit="return false;">
  16. <input type="text" id="userName" />
  17. <input type="submit" value="alright!" onclick="submitUser(this)">
  18. </form>
  19. </div>
  20.  
  21. <strong>Our guest Book!</strong>
  22. <div id="list">
  23. </div>
  24.  
  25. </body>
  26. </html>