Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save richleland/421062 to your computer and use it in GitHub Desktop.
Save richleland/421062 to your computer and use it in GitHub Desktop.
/*!
* Fade Out element and remove from DOM
*/
(function($)
{
$.fn.fadeOutAndRemove = function(duration)
{
duration = (duration === undefined) ? 250 : duration;
return this.fadeOut(duration, function()
{
$(this).remove();
});
};
})(jQuery);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment