Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Touch Events in Windows Phone 7 Mango IE

Will the IE in WP7 Mango support Touch events like iOS or Android? The touch events seems will become a standard in W3C: http://dvcs.w3.org/hg/webevents/raw-file/tip/touchevents.html. IE 9 said it follow the standards, does anyone know whether it will support touch events? Thanks.

like image 298
Kinleong Avatar asked Aug 22 '11 03:08

Kinleong


2 Answers

It currently supports no touch events. All you need do to prove it is something simple like this:

document.ontouchstart = function() { alert("TS"); }
document.ontouchmove = function() { alert("TM"); }
document.ontouchend = function() { alert("TE"); }

None of these will fire in IE9 mobile.

like image 148
AuntieChrist Avatar answered Oct 27 '22 05:10

AuntieChrist


It doesn't currently support touch events.

like image 26
Matt Lacey Avatar answered Oct 27 '22 07:10

Matt Lacey