Modify ↓
Ticket #12069 (closed bug: invalid)
change event is not working when i add .not()
| Reported by: | thulasirams1986@… | Owned by: | |
|---|---|---|---|
| Priority: | undecided | Milestone: | None |
| Component: | unfiled | Version: | 1.7.2 |
| Keywords: | Cc: | ||
| Blocking: | Blocked by: |
Description
not working:
$('#form').find('input[name], textarea[name], select[name]').not('.BackSpace').live('change keyup', function (event) { });
working :
$('#form').find('input[name]:not(.BackSpace), textarea[name], select[name]').live('change keyup', function (event) { });
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.

You're using .live() wrong. Please ask for help on a forum.