Opened 10 years ago
Closed 10 years ago
#11744 closed bug (worksforme)
live eventObject bug
Reported by: | Owned by: | ||
---|---|---|---|
Priority: | undecided | Milestone: | None |
Component: | unfiled | Version: | 1.7.2 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
i need to know why when i use .addEventListener("MSPointerDown", Down, false) works fine to get this: function Down(evt) {
var id = evt.pointerID();
} BUT when i use jquery $('.Floating').live("MSPointerDown", Down); i can't get evt.pointerID(); IT DOESN'T WORK. IT SHOULD. WHY?
Note: See
TracTickets for help on using
tickets.
Only standard properties are copied. Use
event.originalEvent
to get to the original properties.