This is from memory, since I no longer own the Android device, but I think it is correct. At the very least, this should make you start in the right direction. Good luck.
var elem = document.getElementById('elem'); elem.addEventListener('touchend', function(e){ var pageX = e.changedTouches[0].pageX, pageY = e.changedTouches[0].pageY; }, false);
source share