W3cubDocs

/DOM

Event.cancelable

Indicates whether the event is cancelable or not.

Syntax

bool = event.cancelable
  • The result is a Boolean, which is true if the event can be canceled.

Example

var bool = event.cancelable;

bool contains true or false, depending on whether the event can have its default action prevented.

Notes

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.

Specifications

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.

© 2005–2017 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/Event/cancelable