The issue I am having is that the form still submits even though the code is made to return false if and or all of the fields are empty.
My HTML:
<form action="" method="post" name="contactForm" id="contactForm">
<input type="text" name="contactName" id="contactName" class="contactTextfield" />
<input type="text" name="contactPhone" id="contactPhone" class="contactTextfield" />
<input type="text" name="contactEmail" id="contactEmail" class="contactTextfield" />
<textarea name="contactMessage" id="contactMessage" class="contactTextarea" rows="5"></textarea>
<input type="submit" name="contactSubmit" id="contactSubmit" value="Send"/>
</form>
My jQuery:
$("#contactForm").submit( function() {
var contactName = $("#contactName").val();
var contactEmail = $("#contactEmail").val();
var contactMessage = $("#contactMessage").val();
var emailFormat = /^([\w-\.]+@([\w-]+\.)+[\w-]{2,4})?$/;
if ( contactEmail != '' && emailFormat.test(contactEmail) ) {
var contactEmailCheck = true;
}
if ( contactName != '' ) {
var contactNameCheck = true;
}
if ( contactMessage != '' ) {
var contactMessageCheck = true;
}
if ( contactEmailCheck == true && contactNameCheck == true && contactMessageCheck == true ) {
return true;
} else {
return false;
}
});
FIXED:
Turned out it was not working because the jquery code was in the header of the index page while the form itself was only loaded onto the page via ajax from a separate html file. I had to place the jquery code inside the same file as the form.
return falsedoes not work? – FAngel Oct 5 '12 at 17:59