jquery submit refresh page stop
$("#prospects_form").submit(function(e) {
e.preventDefault(); // <==stop page refresh==>
});
jquery submit refresh page stop
$("#prospects_form").submit(function(e) {
e.preventDefault(); // <==stop page refresh==>
});
submit() refreshes the page
<form onsubmit="return false;">Form stuff in here</form>
prevent re submit form on refresh javascript
<script>
if ( window.history.replaceState ) {
window.history.replaceState( null, null, window.location.href );
}
</script>
javascript stop the form from reloading
Use <button type="button"> to override default submission behavior
Use event.preventDefault() in the onSubmit event to prevent form submission
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us