Anchor click event : Event click « jQuery « JavaScript Tutorial






<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>








30.127.Event click
30.127.1.Add event to container
30.127.2.Add your own action to anchor
30.127.3.Anchor click event