u JS .html() - set the HTML contents of every matched element

click me


$.ready(function() {

  $("p").bind("click", function(){

         $(this).html("u JS .html() - set the HTML contents of every matched element"); 
  })      
})