Created
June 1, 2010 15:36
-
-
Save zachwaugh/421059 to your computer and use it in GitHub Desktop.
Revisions
-
zachwaugh created this gist
Jun 1, 2010 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal 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);