Get your own website Result Size: 625 x 565
x
 
<!DOCTYPE html>
<html>
<body>
<h1>DOM touchend Event</h1>
<p id="myP">Touch this paragraph, and release the touch to trigger a function that will write "Hello World".</p>
<p><strong>Note:</strong> This example is for touch devices only.</p>
<p id="demo"></p>
<script>
document.getElementById("myP").addEventListener("touchend", myFunction);
function myFunction() {
  document.getElementById("demo").innerHTML = "Hello World";
}
</script>
</body>
<!-- Mirrored from www.w3schools.com/jsref/tryit.asp?filename=tryjsref_touchend_eventlistener by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 21 Dec 2022 17:40:05 GMT -->
</html>