I usually add this to the confirmation cation of my forms to have a visual representation of a form submit.
jQuery('.some-class').html('Your subject was successfully submitted. Thank you! Please wait as you are redirected..');
setTimeout(function () {
window.location.href = ' ';
}, 1000);
This would hide the content of the form and display whatever you chose.
Please login or Register to submit your answer