DOM:event.cancelable
From MDC
Contents |
[edit] Summary
Indicates whether the event is cancelable or not.
[edit] Syntax
bool = event.cancelable;
bool contains true or false, depending on whether the event can have its default action prevented.
[edit] 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.