Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

My onsubmit is not working. My idea was to put some mandatory fields and, in order to achieve that, I was using the onsubmit method inside a form in HTML that called a JavaScript function.

The idea was if all the mandatory fields were filled, the javascript function would return true and it would move on to page /control/Cadastro.php. Otherwise, if any mandatory field was empty, it would return false and it wouldn't move to page /control/Cadastro.php, staying in the current page until true.

Unfortunately, the function does return false if all the mandatory fields are not filled, as expected, but it still moves to page /control/Cadastro.php, even if it shouldn't.

I'm going to cut off some code to make my point of view perceptible.

<!DOCTYPE html>
<html>
<head>
<script>

function ValidateRequiredFields()
{

var message = new String('\nCampos obrigatórios:\n');
var flag=new Boolean(1);


var x=document.forms["theForm"]["nr_processoCA"].value;
if (x==null || x==""){
    message += '\nNº do processo\n'; 
    flag = new Boolean(0);
}

if (flag == false){
    alert(message);
}

return flag;

}

</script>
</head>

<body>

<form name="theForm" onsubmit="return ValidateRequiredFields()" method="post" action="../control/Cadastro.php">


Nº do Processo: <br><input type="text" name="nr_processoCA" class="input-xlarge"><br>

<div class="row-fluid" style="text-align:center;">
    <input type="submit" class="btn btn-primary btn-large" value="Gravar">
</div>   

</form>

</body>
</html>
share|improve this question
1  
Don't be so verbose, just write var flag = true or flag = false, idem for String :) – moonwave99 Sep 27 '12 at 14:05

4 Answers

up vote 2 down vote accepted

You should use preventDefault inside your onsubmit function. modified code:

function ValidateRequiredFields()
{

var message = new String('\nCampos obrigatórios:\n');
var flag=new Boolean(1);


var x=document.forms["theForm"]["nr_processoCA"].value;
if (x==null || x==""){
    message += '\nNº do processo\n'; 
    flag = new Boolean(0);
}

if (flag == false){
    if(event.preventDefault){
        event.preventDefault();
    }else{
       event.returnValue = false; // for IE as dont support preventDefault;
    }
    alert(message);
}

return flag;

}

DEMO

share|improve this answer
this actually works!! thank you very much :) – Rita Sep 27 '12 at 15:23

i suggest to put a button that will run the form if true:

 <input type='button' onclick="if (ValidateRequiredFields()) document.forms['theForm'].submit();" />

that's all....

share|improve this answer
if there is an error inside the function then it wont return false and form will submit. since the form submits you wont see the error... best to test the function first. – volchkov Sep 27 '12 at 14:10
This is what <input type="submit"> is made for, without messing with intrusive js. If there is any error in the validation function, moving it around won't solve the issue. – moonwave99 Sep 27 '12 at 14:11
well at least you will see the error. if it still submits i suggest to search for prevetntdefault function. also it does marvelous job and as long as it's followed by click it's ok from the security view of all browsers – volchkov Sep 27 '12 at 14:13
the dude beneath me is right...always recheck the inouts in .php otherwise people with little tools can cause alot of trouble – volchkov Sep 27 '12 at 14:15

An object will always evaluate to true, even if it's a Boolean object with value false.

Put flag = true at the top of the function, then flag = false instead of creating a Boolean.

share|improve this answer

This code sample works:

<!DOCTYPE html>
<html>
<head>
<script>
    function ValidateRequiredFields() {
        var message = new String('\nCampos obrigatórios:\n');
        var flag=1;

        var x=document.forms["theForm"]["nr_processoCA"].value;
        if (x==null || x==""){
            message += '\nNº do processo\n'; 
           alert(message);
       return false;
        }
        return true;
    }
</script>
</head>

<body>

<form name="theForm" method="post" action="../control/Cadastro.php" onSubmit="return ValidateRequiredFields()">


Nº do Processo: <br><input type="text" name="nr_processoCA" class="input-xlarge"><br>

<div class="row-fluid" style="text-align:center;">
    <input type="submit" class="btn btn-primary btn-large" value="Gravar">
</div>   

</form>

</body>
</html>
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.