The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.
Making touch events accessible
For technical reasons, HTML touch events such as pointerUp aren't programmatically accessible by default. To make them accessible, and to allow Narrator touch gestures to activate your app's functionality, add code to hook touch events to the click event, which is programmatically accessible by default.
element.addEventListener("click", onClick); element.addEventListener("PointerUp", onPointerUp); ... var pointerUpEventObject = null; var pressedElement = null; var isUiaClick = false; function onClick(evt) { isUiaClick = true; delayedPointerUp(); } function onPointerUp(evt) { pointerUpEventObject = evt; setImmediate(delayedPointerUp); } ... function delayedPointerUp() { if (isUiaClick || pointerUpEventObject && (pointerUpEventObject.srcElement == pressedElement || ...right button checks...)) { pointerUpEventObject = null; isUiaClick = false; invokeItem(pressedElement); } } ...
Show: