Hi, I need to scale and animate the div at the same time.
Something like that.
$('#div').effect('scale'{percent:200}, 'animate',{left:200}); 
Thanks.
This is the solution I found.
  $('#div').effect('scale'{percent:200},1000); $('#div').animate({left:100,top:100},1000); $('#div').fadeTo(1100,0)); 
Vahan  source share