Modify ↓
Ticket #8378 (closed bug: invalid)
.not().live()
| Reported by: | dpustovarov@… | Owned by: | |
|---|---|---|---|
| Priority: | low | Milestone: | 1.next |
| Component: | event | Version: | 1.5 |
| Keywords: | Cc: | ||
| Blocking: | Blocked by: |
Description
$('form').not('.confirm').live('submit', ... does not work. Event is not catched.
$('form:not(.confirm)').live('submit', ... ok
It seems they both should have the same behavior.
Change History
Please follow the bug reporting guidlines and use jsFiddle when providing test cases and demonstrations instead of pasting the code in the ticket.
Note: See
TracTickets for help on using
tickets.

Thanks for your time and interest in helping with jQuery, but this is expected behaviour.
From the docs
"DOM traversal methods are not supported for finding elements to send to .live(). Rather, the .live() method should always be called directly after a selector."