Skip to content

Instantly share code, notes, and snippets.

@bulbul84
Created July 25, 2022 18:07
Show Gist options
  • Save bulbul84/2d02f4143181be5d9240e9324876a845 to your computer and use it in GitHub Desktop.
Save bulbul84/2d02f4143181be5d9240e9324876a845 to your computer and use it in GitHub Desktop.
add loading icon for multistep form
<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