event.isImmediatePropagationStopped()Returns: Boolean
Description: Returns whether event.stopImmediatePropagation() was ever called on this event object.
-
version added: 1.3event.isImmediatePropagationStopped()
- This method does not accept any arguments.
This property was introduced in DOM level 3.
Example:
Checks whether event.stopImmediatePropagation() was called.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
|