JQuery JavaScript Tutorial

< html>
  
    
    
        $(document).ready(function(){
             $("span").click(function () {
                 $("span").text("changed");
             });
        });
    
  
  
    
        

          
Hello