I am working on a multi-touch drawing application which works great in Chrome and Firefox, but I can't get anything from Microsoft as far as a straight forward answer goes as to whether or not multi-touch (ie: event.touches) is supported in Internet Explorer 11.
Right now a code snip that works in other browsers is as follows:
window.addEventListener("touchstart", onTouchStart, true);
function onTouchStart(event) {
console.log(event.touches.length);
}
In chrome it will print out the number of touches, but I get nothing in Internet Explorer. If anyone knows if this is a problem with IE I would be appreciative.
Thanks.