Skip to content

Instantly share code, notes, and snippets.

@zachwaugh
Created June 1, 2010 15:36
Show Gist options
  • Select an option

  • Save zachwaugh/421059 to your computer and use it in GitHub Desktop.

Select an option

Save zachwaugh/421059 to your computer and use it in GitHub Desktop.

Revisions

  1. zachwaugh created this gist Jun 1, 2010.
    15 changes: 15 additions & 0 deletions jquery.fadeoutandremove.js
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,15 @@
    /*!
    * 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);