VOOZH about

URL: https://www.geeksforgeeks.org/reactjs/react-ontouchcancel-event/

⇱ React onTouchCancel Event - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

React onTouchCancel Event

Last Updated : 23 Jul, 2025

React onTouchCancel event fires when touch interrupts. Similar to other elements in it, we have to pass a function for process execution.

It is similar to the HTML DOM touchcancel event but uses the camelCase convention in React.

Syntax:

onTouchCancel={function}

Parameter :

  • function that will call when touch interrupts.

Return type:

  • event: It is an event object containing information about the event like target element and values

Example 1 : In this example, we implemented the TouchCancel area. If the user interrupts their touch inside the area, they will get a message on the console through the function.

Output :

👁 on-touch-cancel-1


Example 2 : In this example, we implemented an area where when user interrupts there touch user will get a alert message that TouchCancel Fired.

Output:

👁 on-touch-cancel-2
Comment
Article Tags: