JQuery JavaScript Tutorial

< html>
  
    
    
        $(document).ready(function(){
              $("button").click(function () {
                  $(this).replaceWith("
" + $(this).text() + "
");
                });
                
         
        });