Javascript DOM touchstart Event via HTML Tag touchstart attribute

Introduction

This example is for touch devices only.

View in separate window

<!DOCTYPE html>
<html>
<body>
<p ontouchstart="myFunction()">
Touch this paragraph to trigger a function that will write "Hello World".</p>
<p id="demo"></p>

<script>
function myFunction() {/*  w ww.  java 2s  .  com*/
  document.getElementById("demo").innerHTML = "Hello World";
}
</script>

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



PreviousNext

Related