Jquery-mobile supports these events:
http://jquerymobile.com/demos/1.0a3/docs/api/events.html
How do I get the position of the tap event (for example within an image) on a mobile device?
$('#myimg').bind('tap', function(e){
var x = ???;
var y = ???;
alert([x, y]);
})
I dont know about Jquery mobile but i just tried a canvas demo page i got in my iphone ...that you just click and draws circles and it works fine.
and i just use e.pageX and e.pageY like the people above said