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