JQuery JavaScript Tutorial

< html>
  
    
    
        $(document).ready(function(){
            $('div').each(function(){
            $(this).animate(
            {
            width: $(this).width() * 2,
            height: $(this).height() * 2
            },
            2000
            );
            });
        });
    

  
  
    
      
          
asdf