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

I've been binding submit events to forms, and ensuring that they do not break the form, using jQuery like this:

jQuery('form').submit(function(e){
    var form = this;
    e.preventDefault(); 
    alert('1');
    setTimeout(function() {   
        alert('2');
        form.submit();
        }, 1000);

    });

This is all good and well, except, if for some reason a front end developer gave a child input of this form an id of ="submit", this breaks, as form.submit() throws a JavaScript error (In Chrome, 'Uncaught TypeError: Property 'submit' of object # is not a function').

You can see an example of that happening here: http://jsfiddle.net/q68ky/ (Here's the behavior if there's no <input id="submit">: http://jsfiddle.net/JpXzL/

Now, I know I can prevent this from binding on forms that have children with an id of 'submit' with jQuery('form').not(:has('#submit')).submit(), and the form will process just fine, but my binding will never fire for those forms.

So, the question: How can I safely bind this jQuery function to all forms, including those with <input id="submit">?

EDIT: Worth noting that this problem doesn't go away if I unbind the submit handler and then trigger a jQuery submit on jQuery(form).

share|improve this question
I know an ideal world, I should never create id="submit" on an input form, but I can't guarantee that it won't exist. – yahelc Dec 16 '10 at 20:25
1  
@ys, you do understand that this code will result in an endless loop right ? – Gaby aka G. Petrioli Dec 16 '10 at 20:47
@Gaby no, form.submit() is triggering submit on the DOM element, not the jQuery element. if it was $(form).submit(); you'd be right, and I'd need to unbind the jQuery handler, like here: jsfiddle.net/LKUhV. Also, as you see on the original jsfiddle, it doesn't result in an infinite loop of alert() being triggered. – yahelc Dec 16 '10 at 20:49

5 Answers

up vote 4 down vote accepted

The only way I can think of:

(function () {
    var method;

    window.submit = function (theForm) {
        if (!method) {
            method = document.createElement("form").submit;
        }

        method.call(theForm);
    };
}());

Then call submit(theFormYouWantToSubmit).

You can see it in action here: http://jsfiddle.net/q68ky/2/

Edit: To provide some explanation as to what this does....

This method creates a new form element (document.createElement("form")), and stores a reference to the "submit" attribute of it (method = document.createElement("form").submit). Because this is a newly created form element, with no child nodes, we can guarantee that the "submit" attribute is actually the "submit" method we need, rather than a child node with an id/name of "submit".

We then use the call method (part of Function.prototype), which sets the context of the submit method to the form we want to submit, rather than the window object, which is what it would otherwise be on.

The rest of the gubbins in the snippet caches the submit method, so that all of this (albeit small) overhead does not take place every time you want to submit the form, and captures the cached method in a local scope, instead of holding it in the global scope and polluting the global namespace.

share|improve this answer
+1 This method should at least work everywhere regardless how the DOM node class is actually named. – Felix Kling Dec 16 '10 at 21:18
Can you explain what's happening here? I get that it works, I just have no idea how. – yahelc Dec 16 '10 at 21:34
@yc: Actually it is the same what I did, but this solution does not get submit() method directly from the prototype but from a new form instance. The code is wrapped in an immediate function. This gives us the possibility to cache document.createElement("form").submit in method without polluting the global namespace. – Felix Kling Dec 16 '10 at 21:37
So, I'd rather use the default submit, and fall back on this. Can I do something like if(typeof form.submit == "function"){}else{} – yahelc Dec 16 '10 at 21:42
@yc: It does not matter which one you use, because it is still the same function. But yes, you could do it like that. – Felix Kling Dec 16 '10 at 21:52
show 2 more comments

As this is actually a non-jQuery problem, here is a non-jQuery solution:

HTMLFormElement.prototype.submit.call(form);

DEMO

Reference: HTMLFormElement

Update: Access to the DOM prototypes is only possible in IE8+. (and that is probably the reason why jQuery does not use it).

@Matt's answer instead should work in any browser

share|improve this answer
+1: A neater solution than mine. – Matt Dec 16 '10 at 20:56
Clean, I like it. Are there any drawbacks to using this more widely? And, further, why doesn't jQuery use this for submit()? – yahelc Dec 16 '10 at 21:02
@yc: Well, I am always unsure how IE implements all these things. But I have no IE here to test... The method itself (getting the original method from the prototype) is used widely used to avoid exactly this situations (overwriting the property). – Felix Kling Dec 16 '10 at 21:06
2  
"I have no IE here to test..." - what heaven is this and how do I get there? – ScottSEA Dec 16 '10 at 21:12
@ScottSEA: Get a Mac ;) (or any UNIX/Linux distribution and never install Windows again!) – Felix Kling Dec 16 '10 at 21:12

In addition the problem I identified in my other answer, there is an open jQuery bug exacerbating the issue:

.SUBMIT() CAN FAIL IF SOMETHING HAS ID="SUBMIT"

If an element with an ID of submit exists in a form, .submit() can fail. It's important that this function (in particular) work correctly.

http://bugs.jquery.com/ticket/1414

share|improve this answer
Interestingly that the bug is already 3 years old! – Felix Kling Dec 16 '10 at 21:15
Is there hope? Seems like it's been in the queue for 3 years! – hunter Dec 16 '10 at 21:15
For now, there's no hope, as the best solution apparently still fails in IE6. (see the updates in the ticket) – yahelc Jan 21 '11 at 16:05

Instead of form.submit();, you need

$(form).submit();

This is because form is just the bare DOM element, while $(form) is the jQuery object. Calling form.submit() is trying to access the submit property of form. Since it doesn't have one, it's defaulting to the old-school behavior of getting the child element whose id is submit (hence the "is not a function" error).

share|improve this answer
Same error occurs. Your description of why this is happening sounds true, though – yahelc Dec 16 '10 at 20:44
yeah, I tried that, too... no alert(3) triggered – hunter Dec 16 '10 at 20:45
As an example jsfiddle.net/LKUhV – yahelc Dec 16 '10 at 20:46
@hunter Yea, the code would never call alert(3) (since the event propagation is stopped with e.preventDefault()). In fact, it'll kick off an infinite form submission loop, since $(form).submit() will just re-trigger this same handler over and over again! – Emmett Dec 16 '10 at 20:48
@yc: That works perfectly for me. – Felix Kling Dec 16 '10 at 20:49
show 7 more comments

The error occurs if a form element's name or id is 'submit'. It looks like it's an issue with jQuery.

share|improve this answer
nothing to do with jQuery. problem is that the . notations will find the element with id submit (as it is a property of the form) instead of the method.. – Gaby aka G. Petrioli Dec 16 '10 at 20:45

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.