jquery - Don't queue fadeTo(), fadeIn()/fadeOut() -



jquery - Don't queue fadeTo(), fadeIn()/fadeOut() -

i have next animations:

$('#id').animate({'margin-top': 100, 'margin-left': 100}, {queue: false, duration: 1000}); $('#id2').fadeto(1000, 1);

this seems queuing, how can create sure fadeto() doesn't queue?

try:

$('#id2').stop().fadeto(1000, 1);

jquery jquery-animate queuing

Comments

Popular posts from this blog

iphone - Dismissing a UIAlertView -

intellij idea - Update external libraries with intelij and java -

javascript - send data from a new window to previous window in php -