Advertisement
Guest User

Untitled

a guest
Apr 20th, 2014
37
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.84 KB | None | 0 0
  1. <head>
  2. <script type="text/javascript">
  3. function popup()
  4. {
  5. confirm ("Welcome!");
  6. }
  7. </script>
  8. </head>
  9.  
  10. <body>
  11. <button onclick="popup()">Try it</button>
  12. </body>
  13.  
  14. <head>
  15. <script type="text/javascript">
  16. function popup()
  17. {
  18. document.getElementById("div").innerHTML="Welcome!"
  19. }
  20. </script>
  21. </head>
  22. <body>
  23. <button onclick="popup()">Try it</button>
  24. <div id="div"></div>
  25. </body>
  26.  
  27. <html>
  28. <head>
  29. <script src="https://code.jquery.com/jquery-2.1.0.min.js"></script>
  30. <script>
  31. jQuery(document).ready(function() {
  32. jQuery('#mybutton').click(function() {
  33. jQuery('#mytext').append('This is a line of text');
  34. });
  35. });
  36. </script>
  37. </head>
  38. <body>
  39. <button id="mybutton">Try it</button>
  40. <div id="mytext"></div>
  41. </body>
  42. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement