Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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();  
share|improve this question
1  
Try using $('#form')[0].submit(); OR simply document.getElementById('form').submit(); .. BTW, your current code should actually work.. – techfoobar Sep 22 '12 at 5:24
2  
It seems that there is a conflict on your page, prototype/mootools/...? – undefined Sep 22 '12 at 5:25
I'll try the first option in just one moment. Second reply... jquery.min.js – Andrew Allen West Sep 22 '12 at 5:27
are you closing your form </form>? – c0deNinja Sep 22 '12 at 5:32
1  
@techfoobar he's selecting by ID.. It would only get the first matched element anyways – wirey Sep 22 '12 at 5:34
show 3 more comments

4 Answers

up vote 44 down vote accepted

Check the form to see whether there is a HTMLInputElement with id or name is submit.

This will set a property submit to the HTMLFormElement, so the submit function which is in the prototype of the form element can't be executed.

Example:

<form class="form" id="form" action="/mailer.php" method="post">
    ​<input type="button" name="submit" value="go"/>
</form>​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​

js:

​console.log($("#form")[0].submit)​;​  // will be the button element, not the submit function.

jQuery's .submit() method will call the .submit() on the original dom element, so the error will happen.

share|improve this answer
There is a 'mock' submit input type="button" name="submit" so .. i'll remove the name and see if that works. – Andrew Allen West Sep 22 '12 at 5:42
@AndrewAllenWest Yes, that must be the reason. – xdazz Sep 22 '12 at 5:42
That did the trick! Thanks very much. – Andrew Allen West Sep 22 '12 at 5:43
Bear in mind that jquery < 1.9 have a bug regarding the naming of submit button, ie: you cannot name submit button "submit" :) - jsfiddle.net/JscKb – eithed Mar 15 at 10:57
That's not a bug. That's just how the underlying DOM works. There is a work around, but it doesn't work in versions of Internet Explorer that are officially supported by jQuery 1.9 and lower. – Quentin May 5 at 12:57
show 1 more comment

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

share|improve this answer

xdazz explained the issue well.

You can use native a submit method of HTMLFormElement to work around a problem:

HTMLFormElement.prototype.submit.call($('#form')[0]);
share|improve this answer

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.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.