Skip to content

Instantly share code, notes, and snippets.

@janvier005
Created April 8, 2022 02:27
Show Gist options
  • Save janvier005/95b42bb8ec87fa589e1211d6fb211790 to your computer and use it in GitHub Desktop.
Save janvier005/95b42bb8ec87fa589e1211d6fb211790 to your computer and use it in GitHub Desktop.
Destroys jquery-anyview run animations
function remove_animate(selector_id){ // selector_id is a css selector tag, id or class
(function ($) {
$(selector_id+' .animate__animated').each(function(){
$(this).removeClass('animate__animated');
})
}(jQuery));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment