jQuery event.isImmediatePropagationStopped() Method (original) (raw)

Last Updated : 11 Jul, 2025

**jQuery **isImmediatePropagationStopped() Method is used to check whether this method was **called for the event or not. If it was called then it will be ****"true"** or else ****"false"**.

**Syntax:

$(selector).isImmediatePropagationStopped()

**Parameters:

This method accepts only one parameter as a selector which is used to select the element.

**Return value: This method returns true if event.stopImmediatePropagation() is called or it will return false if not called.

**Example 1: In this example, we will call the isImmediatePropagationStopped() Method.

HTML `