TOC PREV NEXT INDEX

domref



bubbles


Indicates whether the given event bubbles up through the DOM or not.

Syntax

bool = event.bubbles
 

Parameters

bool is a boolean true | false.

Example

function goInput(e) {  // checks bubbles and
 
  if not e.bubbles     // passes event along if it's not
 
    passItOn(e);       // already bubbling
 
  doOutput(e)
 

 

Notes

None..

Specification

link to spec
 


Netscape Communications
http://developer.netscape.com
TOC PREV NEXT INDEX