SummaryEdit
Indicates whether the event is cancelable or not.
SyntaxEdit
bool = event.cancelable
- The result is a
Boolean
, which istrue
if the event can be canceled.
ExampleEdit
var bool = event.cancelable;
bool
contains true
or false
, depending on whether the event can have its default action prevented.
NotesEdit
Whether an event can be canceled or not is something that's determined when that event is initialized.
To cancel an event, call the preventDefault()
method on the event. This keeps the implementation from executing the default action that is associated with the event.
SpecificationsEdit
Specification | Status | Comment |
---|---|---|
DOM The definition of 'Event.cancelable' in that specification. |
Living Standard | |
DOM4 The definition of 'Event.cancelable' in that specification. |
Working Draft | |
Document Object Model (DOM) Level 2 Events Specification The definition of 'Event.cancelable' in that specification. |
Recommendation | Initial definition. |