Javascript DOM touchmove Event via addEventListener() method

Introduction

In JavaScript, using the addEventListener() method:

object.addEventListener("touchmove",
       myScript);

This example is for touch devices only.

View in separate window

<!DOCTYPE html>
<html>
<body>
<p id="myP">Touch this paragraph and move the finger to trigger a function that will write "Hello World".</p>
<p id="demo"></p>

<script>
document.getElementById("myP").addEventListener("touchmove", myFunction);

function myFunction() {/*from   ww  w  .  j  a v  a2  s .c o m*/
  document.getElementById("demo").innerHTML = "Hello World";
}
</script>

</body>
</html>
Bubbles: Yes
Cancelable: Yes
Event type: TouchEvent
Supported HTML tags: All HTML elements



PreviousNext

Related