TOC PREV NEXT INDEX

Put your logo here!


cancelable


Indicates whether the event is cancelable.

Syntax

bool = event.cancelable 

Parameters

bool is a boolean true | false.

Example

// example here 

Notes

Whether an event can be canceled or not is something that's determined when that event is created. To cancel an event, you must call the preventDefault() method on the event, which keeps it from executing the default action that is its usual result.

Specification

cancelable 


mozilla DOM project | mailto:oeschger | bug 93108
TOC PREV NEXT INDEX