JQuery JavaScript Tutorial

< html>
  
    
    
        $(document).ready(function(){
                $("p").click(function () {
                  $(this).hide();
                  return true;
                });
        });
    
  
  
    
        

Hello