Advertisement
Guest User

Untitled

a guest
Feb 25th, 2014
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.32 KB | None | 0 0
  1. <html>
  2.     <head>
  3.         <title> test </title>
  4.         <script type="text/javascript" src="jquery.js"> </script>
  5.        
  6.         <script>
  7.             $(document).ready(function() {
  8.                 $('a').click(function() {
  9.                     alert("do something");
  10.                 })
  11.             });
  12.         </script>
  13.  
  14.     </head>
  15.  
  16.     <body>
  17.         test
  18.         <a href="www.google.com"> google </a>
  19.     </body>
  20. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement