Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
<input type="submit" name="submit" value="Submit" onclick="check_form();"></div>

If all fields are corrects function check_form() return true, I want submit form, only hwen all fields are correct, how to do it. On this moments when I close JavaScript alerts form auto submit.

share|improve this question
1  
if the validation fails, return false; to prevent the default behavior (which is to submit the page), otherwise return true; and let it submit. – jbabey Feb 19 at 20:15

1 Answer

up vote 3 down vote accepted

You are missing the return

<input type="submit" name="submit" value="Submit" onclick="return check_form();"></div>

and your function

function check_form(){
    var isValid = true;
    if(.....) {
        isValid = false;
    } 
    return isValid;
}

better yet use onsubmit of the form since an Enter key in a textbox can submit it.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.