This page is In Progress

Notice: The WebPlatform project, supported by various stewards between 2012 and 2015, has been discontinued. This site is now available on github.

bubbles

Summary

Gets a value that indicates whether an event propagates up from the event target.

Property of dom/Eventdom/Event

Syntax

Note: This property is read-only.

var bubbles = event.bubbles;

Return Value

Returns an object of type BooleanBoolean

Whether the event propagates upward from the event target.

Notes

When you create a custom event by using the createEvent method, you can set the bubbles property by using the initEvent method.

Related specifications

DOM Level 3 Events
Working Draft

See also

Related pages

Attributions