Advertisement
garfield

[jQuery]: Começando com jQuery

Feb 3rd, 2012
226
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.35 KB | None | 0 0
  1. /*
  2.         @Nome: Pequeno exemplo uso de jQuery
  3.         @Créditos: SuYaNw
  4. */
  5. <html><head>
  6. <script type="text/javascript" src="http://code.jquery.com/jquery-1.5.1.js" ></script>
  7. <script>
  8. $().ready(function(){
  9.     $('x').click(function(){
  10.         alert("Mensagem");
  11.     });
  12. });
  13.  
  14. </script>
  15. </head>
  16.  
  17. <body>
  18. <x><a href='#' >Click Here</A></x> <br />
  19. </body>
  20. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement