JQuery JavaScript Tutorial

< html>
  
    
    
        $(document).ready(function(){
            
            $("#go").click(function(){
              $("div").animate({left: '+=1000px'}, 20000);
            });
        
            $("#stop").click(function(){
              $("div").stop();
            });
        
        });
    
  
    
  
  
    
         Go 
         STOP!
        
asdf