Advertisement
Guest User

Untitled

a guest
Apr 16th, 2014
40
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.53 KB | None | 0 0
  1. <!DOCTYPE html> <html> <head> <script>
  2. window.onload = init;
  3.  
  4. var clicks = 0;
  5.  
  6. function init()
  7. {
  8. document.getElementById("go").onclick = add_textarea;
  9. }
  10.  
  11. function add_textarea()
  12. {
  13. clicks++;
  14. var textarea = '';
  15. for(var i=0;i<clicks;i++)
  16. {
  17. textarea += '<textarea cols="5" rows="5"></textarea><br>';
  18. }
  19. document.getElementById("pola").innerHTML = textarea;
  20.  
  21. }
  22. </script> </head>
  23. <body>
  24.  
  25. <form action="#"> <input type="submit" value="Dodaj pole" id="go"/> </form>
  26.  
  27. <div id="pola"></div>
  28.  
  29. </body> </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement