Modify ↓
Ticket #6055 (closed bug: fixed)
Calling trigger('blur') does not work if the handler is bound with the live() method
| Reported by: | AndyIMT | Owned by: | |
|---|---|---|---|
| Priority: | Milestone: | 1.4.2 | |
| Component: | event | Version: | 1.4.1 |
| Keywords: | blur live | Cc: | |
| Blocking: | Blocked by: |
Description
Calling $("#id").blur() does not work if the handler is attached with the live() method:
$("#id").live("blur", function() {
alert("blur handler");
});
If attached with the blur() method, it works as expected.
Test case attached. Change event works correctly in both scenarios, but blur does not.
Attachments
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.

