i using show in jquery with specific time
$('#main_div').hide();
$('#main_div').show(3000);
is their any jquery selector to detect show animation is currntly running. is it possible???
i using show in jquery with specific time
$('#main_div').hide();
$('#main_div').show(3000);
is their any jquery selector to detect show animation is currntly running. is it possible???
You can detect whether an animation is running by :animated
selector, but it's not possible to decide which animation is running