Event.bubbles
Summary
Indicates whether the given event bubbles up through the DOM or not.
Syntax
JavaScript
Copy Code
event.bubbles
Returns a Boolean value, which is true
if the event bubbles up through the DOM.
Example
JavaScript
Copy Code
var bool = event.bubbles;
bool
contains true
or false
, depending on whether the event can bubble or not.
Notes
Only certain events can bubble. Events that do bubble have this property set to true
. You can use this property to check if an event is allowed to bubble or not.
Example
JavaScript
Copy Code
function goInput(e) { // checks bubbles and if (!e.bubbles) { // passes event along if it's not passItOn(e); } // already bubbling doOutput(e) }
Specifications
Specification | Status | Comment |
---|---|---|
DOM The definition of 'Event.bubbles' in that specification. |
Living Standard | |
DOM4 The definition of 'Event.bubbles' in that specification. |
Working Draft | |
Document Object Model (DOM) Level 2 Events Specification The definition of 'Event.bubbles' in that specification. |
Recommendation | Initial definition. |
License
© 2016 Mozilla Contributors
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-us/docs/web/api/event/bubbles