You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When an element (or set of elements) is already hidden and you call fadeOut(), jQuery will no longer file the 'complete' callback. The following code replicates the issue:
var myElem = $('<div>Hi, I'm an element!</div>');
myElem.appendTo('body').hide();
myElem.fadeOut(function () {
alert('I've finished fading out!'); // this will never get executed
});
Issue also exists for a visible element and calling fadeIn();
The text was updated successfully, but these errors were encountered:
When an element (or set of elements) is already hidden and you call fadeOut(), jQuery will no longer file the 'complete' callback. The following code replicates the issue:
Issue also exists for a visible element and calling fadeIn();
The text was updated successfully, but these errors were encountered: