Skip to content

Instantly share code, notes, and snippets.

@jorgepinon
Last active December 26, 2015 02:29
Show Gist options
  • Save jorgepinon/7079161 to your computer and use it in GitHub Desktop.
Save jorgepinon/7079161 to your computer and use it in GitHub Desktop.
jQuery fadeOut and remove plugin
$.fn.fadeOutAndRemove = function(speed){
$(this).fadeOut(speed,function(){
$(this).remove();
})
}
// use like $('div').fadeOutAndRemove(200);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment