Firefox Tomorrow

web api instance property

Event: cancelBubble property

View on MDN ↗

Available in workers

The cancelBubble property of the Event interface is deprecated. Use 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.

Value

A boolean value. The value true means that the event must not be propagated further.

Example

elem.onclick = (event) => {
  // Do cool things here
  event.cancelBubble = true;
};

Specifications

SpecificationsStandards references are available on the canonical MDN page.

Browser compatibility

Browser compatibilityCompatibility data is available on the canonical MDN page.