Skip to content

Instantly share code, notes, and snippets.

@juanlopezdev
Last active May 2, 2016 17:38
Show Gist options
  • Select an option

  • Save juanlopezdev/15ffb1ce2f4e2e025305 to your computer and use it in GitHub Desktop.

Select an option

Save juanlopezdev/15ffb1ce2f4e2e025305 to your computer and use it in GitHub Desktop.
Remover elemento con efecto "desaparecer" en Jquery / Remove element effect "FadeOut" into Jquery
/*
* Extender método / Extend
*/
$(function() {
$.fn.fadeOutRemove = function(time) {
$(this).fadeOut(time, function() {
$(this).remove();
});
};
}
/*
* Ejemplo / Example
*/
$('#element').fadeOutRemove();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment