I have a web app that work perfect in android 2.1, when I upgrade to 2.2 the pageX property in ontouchend event, this is my code:

menu1.ontouchend = function(e){
e.preventDefault();
if (e.touches && e.touches.length>0) { // iPhone
    x2 = e.touches[0].pageX;
    y2 = e.touches[0].pageY;
} else { // all others
    x2 = e.pageX;
    y2 = e.pageY;
}
}

Anybody know what change in the javascript API for touch events from 2.1 to 2.2?????

link|improve this question

50% accept rate
As far as I can tell, startX and startY are also broken. I haven't figured out a workaround yet. – Marcus Jul 20 '10 at 23:42
feedback

2 Answers

Did you get this worked out? I'm just starting on some code that tracks touch area and would like to see if there is a work around. Currently, motorola's CliqXT, Droid X, and Devour have a bug that keeps the ontouchevents from working properly. They told me it should be fixed in the next OS update.

link|improve this answer
feedback

You can try:

event.targetTouches[0].pageX

If this does not work, then check if you can get this property from a "touchmove" event. If yes, then store this value (when accessing it in the "touchmove" event) and load it during the "touchend" event.

link|improve this answer
thanks I will try it :-) – juanca Nov 11 '11 at 22:40
feedback

Your Answer

 
or
required, but never shown

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