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
Post a Comment