Open In App
Related Articles

HTML | DOM touchcancel Event

Improve Article
Improve
Save Article
Save
Like Article
Like

The touchcancel event is used to execute a script when the touch event gets interrupted. 
It is considered a good practice to include the touchcancel event to clean up the code if the devices interrupt a touch event at different actions.
Supported Tags 

  • All HTML elements supported by this event.

Supported Tags

  • <details>

Syntax: 
 

object.ontouchcancel = myScript;

Below program illustrates the touchcancel event : 
Example-1: Executing a JavaScript when a touch is interrupted. 
 

html




<!DOCTYPE html>
<html>
 
<head>
    <title>touchcancel Event in HTML</title>
    <style>
        h1 {
            color: green;
        }
         
        h2 {
            font-family: Impact;
        }
         
        body {
            text-align: center;
        }
    </style>
</head>
 
<body>
 
    <h1>GeeksforGeeks</h1>
    <h2>touchcancel Event</h2>
    <br>
 
    <p ontouchcancel="cancel()">
      Touch somewhere in the paragraph while
      you do something that will interrupt the event.</p>
 
 
    <br>
 
    <p id="test"></p>
 
 
 
    <script>
        function cancel() {
           
            document.getElementById(
              "test").innerHTML =
              "Touch Cancelled due to interruption";
        }
    </script>
 
</body>
 
</html>


Output: 
Before touching the screen: 
 

After touching the screen: 
 

Supported Browsers: 

  • Google Chrome 22 and above
  • Firefox 52 and above
  • Edge 12 and above

 


Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out - check it out now!

Last Updated : 13 Jun, 2022
Like Article
Save Article
Previous
Next
Similar Reads
Complete Tutorials