Created
April 8, 2022 02:27
-
-
Save janvier005/95b42bb8ec87fa589e1211d6fb211790 to your computer and use it in GitHub Desktop.
Destroys jquery-anyview run animations
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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