Modify ↓
Ticket #6210 (closed bug: invalid)
binded event do not work when call dom element 's fireEvent
| Reported by: | aruanruan | Owned by: | |
|---|---|---|---|
| Priority: | Milestone: | 1.4.3 | |
| Component: | event | Version: | 1.4.2 |
| Keywords: | Cc: | ||
| Blocking: | Blocked by: |
Description
first sorry for my last invalid ticket.
when i upgrade to version 1.4.2, DOM element method fireEvent in ie does not working , it works ok in 1.3.1, that is i have bind a event on a textbox 's click, when i use $('#textbox')[0].fireEvent("onclick"), my event handler do not triggered.
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 should be doing: $("#textbox").click() - jQuery will take care of the event triggering for you and across all browsers as well.