Jquery JavaScript DHTML


  
    
    
        $(document).ready(function(){
            $("button").click(function () {
              $("div").animate({left:'+=210px'}, 2000);
              $("div").animate({top:'1000px'}, 1200);
              $("div").animate({top:'10px'}, 1200);  
              $("div").animate({top:'1000px'}, 1200);            
              $("div").queue(function () {
                $(this).toggleClass("red");
                $(this).dequeue();
              });
              $("div").animate({left:'120px', top:'30px'}, 700);
            });
        });
    

  
  
    
      
      
adsf