from jquery animate doc i found a sample example where multiple animate function is used for single div.
doc url http://api.jquery.com/animate/
here is sample code
$( "#go1" ).click(function(){
$( "#block1" ).animate( { width: "90%" }, { queue: false, duration: 3000 })
.animate({ fontSize: "24px" }, 1500 )
.animate({ borderRightWidth: "15px" }, 1500 );
});
here i have couple of question about animate function
1) why queue: false why queue is false. what would be the result if queue was true
2) here animate use like animate().animate().animate() this way so all the animate will run parallel or one after one?