Add your own action to anchor : 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(){
     $(".article .thebody").hide();
     $("#container .article ul").prepend("<li class='my'><a href='' title='title'>link</a></li>");

     $(".actions li.my a").click(function(event){
       $(this).parents("ul").prev(".thebody").toggle();
       
       event.preventDefault();
     });
   });
    </script>
  </head>
  <body>
 <div id="container">
   <div class="article">
     <p class="summary">Summary 01</p>
     <p class="thebody">Lorem ipsum....</p>
     
     <ul class="actions">

     </ul> 
     
   </div>

 </div>


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