Can anyone explain to me what this error means? I would appreciate it a lot for any kindof help with this.
<form class="form" id="form" action="/mailer.php" method="post">
The Jquery code I'm using for it is this.
$('#form').submit();
|
Can anyone explain to me what this error means? I would appreciate it a lot for any kindof help with this.
The Jquery code I'm using for it is this.
|
||||
| show 3 more comments |
|
Check the form to see whether there is a This will set a property Example:
js:
jQuery's |
|||||||||||
|
|
If you have a button or input with the name submit or id submit, I have seen errors in IE. Make sure you're inputs are correctly named. Here's an article on it http://bugs.jquery.com/ticket/1414 |
|||
|
|
|
xdazz explained the issue well. You can use native a submit method of HTMLFormElement to work around a problem:
|
|||
|
|
|
This is old. but may help. I found because: input type="submit" value="Submit" id='submit' name='submit'/> it failed: when i changed it to: input type="submit" value="Submit" id='subby' name='subby'/> it worked. |
|||
|
|
$('#form')[0].submit();OR simplydocument.getElementById('form').submit();.. BTW, your current code should actually work.. – techfoobar Sep 22 '12 at 5:24</form>? – c0deNinja Sep 22 '12 at 5:32ID.. It would only get the first matched element anyways – wirey Sep 22 '12 at 5:34