I'm using Jquery Form Validator to validate my registration form for my site and while it does validate successfully, it refreshes the page when I click submit and not redirect directly to another page. Here's what I have:
<script>
$(document).ready(function() {
$("#formID").validationEngine({
submitHandler: function(form){
window.location="report.html"
}
});
function validate2fields(){
if($("#addressl1").val() =="" || $("#addressl2").val() == ""){
return false;
}else{
return true;
}
}
});
</script>
I'm using a simple "submit" button and I've tried adding the link into the button but that didn't work at all. Here it is:
<input type="submit" value="Submit" id="submit">
I'm a beginner at this so I apologize if I've used the wrong terminology. Thanks in advance!
<form action="..." ...>? (Is it defaulting to standard behavior?) – Brad Christie Oct 8 '12 at 16:39<form action="">right now. There isn't any for the submit button either. – user1729250 Oct 8 '12 at 16:43