disable the submit button onvalidatino code example
Example 1: prevent button from submitting form
function myFunc(e){
e.preventDefault();
}
Example 2: make submit button not refresh page
If possible, change it to a normal button
function myFunc(e){
e.preventDefault();
}
If possible, change it to a normal button