Skip to content

Instantly share code, notes, and snippets.

@CEscorcio
Created August 20, 2013 09:04
Show Gist options
  • Save CEscorcio/6279029 to your computer and use it in GitHub Desktop.
Save CEscorcio/6279029 to your computer and use it in GitHub Desktop.
Plugin to fadeout and remover
jQuery.fn.fadeOutAndRemove = function(speed){
$(this).fadeOut(speed,function(){
$(this).remove();
})
}
// And then: Somewhere in the program code.
$('div').fadeOutAndRemove('fast');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment