cancelBubble property
The cancelBubble
property of the Event
interface is deprecated. Use Event.stopPropagation
instead.
Setting its value to true
before returning from an event handler
prevents propagation
of the event. In later implementations, setting this to false
does
nothing.
See Browser compatibility for details.
Implementation
external bool get cancelBubble;
Implementation
external set cancelBubble(bool value);