Skip to content

Instantly share code, notes, and snippets.

@hachesilva
Created June 18, 2018 20:49
Show Gist options
  • Save hachesilva/9617208efb854cdc407a411f0399f7a2 to your computer and use it in GitHub Desktop.
Save hachesilva/9617208efb854cdc407a411f0399f7a2 to your computer and use it in GitHub Desktop.
// Source: https://stackoverflow.com/questions/2200494/jquery-trigger-event-when-an-element-is-removed-from-the-dom
(function($){
$.event.special.destroyed = {
remove: function(o) {
if (o.handler) {
o.handler()
}
}
}
})(jQuery);
$('.slider__item .slider__text').bind('destroyed', function(event) {
//alert('yup');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment