VOOZH about

URL: https://www.geeksforgeeks.org/html/html-dom-touchcancel-event/

⇱ HTML | DOM touchcancel Event - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

HTML | DOM touchcancel Event

Last Updated : 13 Jun, 2022

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. 
 

Output: 
Before touching the screen: 
 

👁 Image


After touching the screen: 
 

👁 Image


Supported Browsers: 

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


 

Comment
Article Tags: