VOOZH about

URL: https://www.geeksforgeeks.org/jquery/jquery-event-ispropagationstopped-method/

⇱ jQuery event.isPropagationStopped() Method - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

jQuery event.isPropagationStopped() Method

Last Updated : 11 Jul, 2025

jQueryevent.isPropagationStopped() Method is used to check whether the object event.stopPropagation() is called or not. If event.stopPropagation() is called then it returns true otherwise returns false. 

Syntax:

event.isPropagationStopped()

Parameters:

It contains a single parameter event which is mandatory. This parameter comes from the event binding function. 

Example 1: This example uses event.isPropagationStopped() method to check event.stopPropagation() is called or not. 

Output:

👁 Image

Example 2: This example uses event.isPropagationStopped() method to check event.stopPropagation() is called or not. 

Output:

👁 Image
Comment

Explore