Advertisement
Guest User

Untitled

a guest
Feb 7th, 2016
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.45 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.     <head>
  4.         <script src="https://code.jquery.com/jquery-2.2.0.min.js"></script>
  5.     </head>
  6.     <body>
  7.         <button type="button" id="click-me">Click Me</button>
  8.         <script type="text/javscript">
  9.             $(document).ready(function() {
  10.                 $("#click-me").click(function () {
  11.                     alert('You clicked me!');
  12.                 });
  13.             });
  14.         </script>
  15.     </body>
  16. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement