I am currently using Jimdo and I have a section where I can edit all the codes, which is working fine except for one feature. Any assistance would be greatly appreciated!
Here is the code that adds a class to an animated SVG image with its status set as display:none. When a download button is clicked, the SVG image changes to display:block, runs 3 times, and then fades out after 3 seconds. Everything seems to be working well until this point. However, what I want is for the added class "s-dwlnd" to be removed once the SVG finishes fading out - specifically after 3 seconds. Is there a way to achieve this by adding a timeout function to my existing code? Unfortunately, not all codes are compatible with Jimdo :(
$( document ).ready(function() {
$( ".dwlnd-trg" ).click(function() {
$( ".dwlnd" ).addClass( "s-dwlnd" );
});});