This article needs a technical review. How you can help.
A global event handler for the pointermove event.
Syntax
var moveHandler = targetElement.onpointermove;
Return value
moveHandler- The pointermove event handler for element
targetElement.
Example
This example shows two ways to use onpointermove to set an element's pointermove event handler.
<html>
<script>
function moveHandler(ev) {
// Process the pointermove event
}
function init() {
var el=document.getElementById("target1");
el.onpointermove = moveHandler;
}
</script>
<body onload="init();">
<div id="target1"> Touch me ... </div>
<div id="target2" onpointermove="moveHandler(event)"> Touch me ... </div>
</body>
</html>
Specifications
| Specification | Status | Comment |
|---|---|---|
| Pointer Events – Level 2 The definition of 'onpointermove' in that specification. |
Editor's Draft | Non-stable version |
| Pointer Events The definition of 'onpointermove' in that specification. |
Recommendation | Initial definition |
Browser compatibility
| Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari (WebKit) |
|---|---|---|---|---|---|
| Basic support | Not supported | (Yes) | 10 | Not supported | Not supported |
| Feature | Android | Android Webview | Chrome for Android | Firefox Mobile (Gecko) | Firefox OS | IE Mobile | Opera Mobile | Safari Mobile |
|---|---|---|---|---|---|---|---|---|
| Basic support | Not supported | Not supported | Not supported | Not supported | Not supported | 10 | Not supported | Not supported |