Jquery JavaScript DHTML


  
    
    
        $(document).ready(function(){
              $("p").click(function () {
                  var htmlStr = $(this).html()+"asdf";
                  $(this).text(htmlStr);
              });
        });
    
  
  
    
         

asdf