Advertisement
Guest User

Untitled

a guest
Aug 4th, 2015
156
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta name="description" content="Basic JS Button Example">
  5. <meta charset="utf-8">
  6. <title>Javascript Button</title>
  7. </head>
  8. <body>
  9. <p>Please don't push that button...</p>
  10.  
  11. <button onclick='myCoolFunction()'>Don't Click Me!</button>
  12.  
  13. <script id="jsbin-javascript">
  14. function myCoolFunction(){
  15. alert("You Rascal! You clicked the Button!");
  16. }
  17. </script>
  18.  
  19.  
  20.  
  21. <script id="jsbin-source-javascript" type="text/javascript">function myCoolFunction(){
  22. alert("You Rascal! You clicked the Button!");
  23. }</script></body>
  24. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement