I\'m using the jQuery Validate plugin on my demo page and for some reason the Submit button doesn\'t work in Google Chrome. I suspect it has to do with the Autofill feature
I doubt the form action has a problem....??
<form action="/contact_form_10-6-2011/contact.php#contactformWrapper" method="post" name="form1" id="contactform">
Dun know why, but I found it bugging me.
Are you using the same php file to read & parse the input as well??something like, Using PHP_SELF in the action field of a form
<input name="submit" type="submit" value="Send Now">
With this line you have overridden the form's "submit" function and replaced it with a button.
form.submit = this button. Not an event handler.
Fix: name the button something else.