Created
July 25, 2022 18:07
-
-
Save bulbul84/2d02f4143181be5d9240e9324876a845 to your computer and use it in GitHub Desktop.
add loading icon for multistep form
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
<script> | |
$(document).ready(function() { | |
$("#email_submit").on("click", function() { | |
$(".multistep_form").addClass("loading"); | |
setTimeout(function() { | |
$(".multistep_form").removeClass("loading"); | |
}, 500); | |
}); | |
}); | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment