Skip to main content

Bug Tracker

Side navigation

#11744 closed bug (worksforme)

Opened May 09, 2012 11:16PM UTC

Closed May 09, 2012 11:27PM UTC

live eventObject bug

Reported by: alanspower@gmail.com 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?

Attachments (0)
Change History (1)

Changed May 09, 2012 11:27PM UTC by scottgonzalez comment:1

resolution: → worksforme
status: newclosed

Only standard properties are copied. Use event.originalEvent to get to the original properties.