Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Find element finger is on during a touchend event

Tags:

I need to discover which html element was under the finger when the touchend event is called. The code I am using;

$('.wsSquare').on("mouseup touchend",function(event){     event.preventDefault();     event.stopPropagation();     console.log($(event.target).data());     }); 

Using the mouse on a (non-touch) device, this code correctly logs the data associated with the element under the mouse at the time of the mouseup event.

However on a touch device (ipad safari), event.target is the element that was under the finger during the touchstart event and logs the data of the element under the touchstart event

I've also examined the behavior of the touchmove event, this also has the same behaviour (the event.target is touchstart element). It seems that the target for all the touch events is the element touched at the beginning of the gesture.

I need to access the element under the finger when the touchend event is called. My gesture potentially traverses many elements.

Edit

Further research dug up this from the specification.

5.5 The touchend event

A user agent must dispatch this event type to indicate when the user removes a touch point from the touch surface, also including cases where the touch point physically leaves the touch surface, such as being dragged off of the screen.

The target of this event must be the same Element on which the touch point started when it was first placed on the surface, even if the touch point has since moved outside the interactive area of the target element.

The touch point or points that were removed must be included in the changedTouches attribute of the TouchEvent, and must not be included in the touches and targetTouches attributes.

So the observed behavior is correct, how can I change this behavior?

like image 536
Ken Avatar asked Jul 17 '12 13:07

Ken


People also ask

What is the use of Touch_move?

The touchmove event is used to execute a script when the user moves the finger across the screen. It works only on touch screen devices and triggers once for every movement and continues to trigger until the finger is released. All HTML elements supported by this event.

Does Safari support touch events?

Gestures handled by Safari on iOS emulate mouse events. In addition, you can register for iOS-specific multi-touch and gesture events directly. Orientation events are another example of an iOS-specific event.


1 Answers

Use document.elementFromPoint and feed it the co-ordinates from the events, for example, like this:

$('.wsSquare').on("mouseup touchend",function(event){     event.preventDefault();     event.stopPropagation();     var changedTouch = event.changedTouches[0];     var elem = document.elementFromPoint(changedTouch.clientX, changedTouch.clientY);     // Do something with elem }); 
like image 122
Some Guy Avatar answered Nov 13 '22 09:11

Some Guy