Skip to content

Instantly share code, notes, and snippets.

@zachwaugh
Created June 1, 2010 15:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save zachwaugh/421059 to your computer and use it in GitHub Desktop.
Save zachwaugh/421059 to your computer and use it in GitHub Desktop.
jQuery plugin to handle fading out and removing and element from the DOM
/*!
* 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