I'm having a problem with jQuery 1.7's latest on() function. I'm moving all of my existing live() calls to the new on() function.

In the past I used live() whenever I created a new element or appended some markup from AJAX.

With jQuery 1.7 If I append form markup returned via AJAX and try to use e.preventDefault or return false to stop it from submitting (to validate it for example) — the form is submitted as normal.

$(document).on('submit', 'form', function(e) {
    alert('You tried to submit the form');
    e.preventDefault();
});
link|improve this question

not completely positive here, but maybe try binding directly to the form? – kand Jan 9 at 16:44
@kand that would defeat the purpose. – Kevin B Jan 9 at 16:45
Could you create a fiddle that causes this issue? It seems to be working jsfiddle.net/markcoleman/E6e79/1. – Mark Jan 9 at 16:48
Is this browser related? Does it work in one browser but not another? – Kevin B Jan 9 at 16:49
It might be too late to prevent the default action at this stage (though it should not imo). Try document.body as selector. – Felix Kling Jan 9 at 16:49
show 4 more comments
feedback

2 Answers

Your code is perfectly valid.

DEMO

If you post some more code we might be able to take a look and see if you have some other problem


But assuming this form is present when the page is rendered, I would just do this:

$("form").on('submit', function(e) {
    alert('You tried to submit the form');
    e.preventDefault();
});

(I'm assuming your page is rendered with the form already present)

link|improve this answer
It seems my problem lies with one of my form elements. I gave one an attribute of name="disabled" a perfectly legal name attribute as far as I can see? (I'm not trying to disable this field, simply give it a name value of disabled) See an altered version of @Adam's code here (original demo here). As you can see, the form is submitted. Is this a jQuery bug or is name="disabled" illegal? – steveneaston Jan 9 at 17:31
@steveneaston - not sure if that's an invalid name or not. That's a question for the html gurus :) You may want to ask a new Q with html dom and javascript tagged. – Adam Rackis Jan 9 at 17:35
feedback
up vote 0 down vote accepted

This has been confirmed as a jQuery bug in 1.7.1, to be fixed in 1.7.2: http://bugs.jquery.com/ticket/11145

My original code is correct (for dynamic DOM elements). Adam Rackis' code is correct for existing DOM elements.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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