简体   繁体   中英

Bootstrap or jquery stopping form SUBMIT

Tired to make this parallax with bootstrap and jquery.. but FORM is not submitting while this code works fine separately if I run.. If someone can help me out in this..

Here is page : http://cellsouq.com/xtra/co/ (complete code) Click on OPPORTUNITIES > FRANCHISE (on top navigation) Click on APPLY ... it will scroll to FORM

Form is something like that with javascript

<script>
function funcFranchise() {
    alert('Submitted Successfull');
    // To validate form elements
}
</script> 

<form onSubmit="return funcFranchise(this)" class="form-horizontal" >
...
<input type="submit" value="Submit Request" class="btn bg-primary" >
</form>

If i remove Bootstrap it works fine. In whole code somewhere submit EVENT is blocked not sure... Please help me out..

You should return either true or false upon the completion your validations. So try like;

<script>
function funcFranchise() {
    alert('Submitted Successfull');
    // To validate form elements
    return true;
}
</script> 

try this:

function funcFranchise() {
alert('Submitted Successfull');
// To validate form elements
$('.form-horizontal').submit();

}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM