Anchor click event : Event click « jQuery « JavaScript DHTML






Anchor click event

 

<html>
  <head>
    <script type="text/javascript" src="js/jquery-1.3.2.js"></script>

    <script type="text/javascript">
 $(document).ready(function(){
   $("a").click(function(event){
     alert("Thanks for visiting!");
   });
 });


    </script>
  </head>
  <body>
    <a href="http://java2s.com/">java2s.com</a>
  </body>
</html>

   
  








Related examples in the same category

1.Add event to container
2.Add your own action to anchor