Form submit button not working in Google Chrome (jQuery Validate)

老子叫甜甜 提交于 2019-12-01 14:43:14
<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.

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

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!