JQuery JavaScript Tutorial

< html>
  
    
    
        .changeP { font-weight: bold; color:red;}
    
    
   $(document).ready(function(){
     $(".article .thebody").hide();
     $("#container .article ul")
       .prepend("Read Body");
     $(".actions li.readbody a").click(function(event){
       $(this).parents("ul").prev(".thebody").toggle();
       
       event.preventDefault();
     });
       
   });
    
  
  
 
   
     Summary 01


     Lorem ipsum....