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).

id="submit"on an input form, but I can't guarantee that it won't exist. – yahelc Dec 16 '10 at 20:25form.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 ofalert()being triggered. – yahelc Dec 16 '10 at 20:49