hi how to get the coordinates that the user touch? i am using xui and javascript to do however at my index.html i do not know how do i call the x and y coordinates that the user get.

link|improve this question

63% accept rate
feedback

1 Answer

if you use xui for event binding then the event callback function gets TocuhEvent object (e) as its parameter

x$('.a_button').on('touchstart', function(e) {
    // whatever
});

Now TouchEvent isn't like MouseEvent where you can have only one input at a time - as TouchEvent object handles multitouch multiple touches at the same time.

To get the touch that was captured on your element you have to get it from e.touches - which is all touches currently active on the device, e.targetTouches - all the touches which are on the current target .a_button in our example or e.changedTouches - touches which triggered the event. For touchstart (best responsiveness) you can grab first element of e.changedTouches as it will be the touch that triggered your touchstart event to get the Touch object representing your touch.

Now Touch object holds all the data you need to get any info on what's happening on the screen.

x$('.a_button').on('touchstart', function(e) {
    var touch = e.changedTouches[0];
    alert(touch.pageX + ' ' + touch.pageY);
});
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.