The isTrusted read-only property of the Event interface is a Boolean that is true when the event was generated by a user action, and false when the event was created or modified by a script or dispatched via EventTarget.dispatchEvent().
Syntax
var eventIsTrusted = event.isTrusted;
Value
Example
if (e.isTrusted) {
/* The event is trusted */
} else {
/* The event is not trusted */
}
Specification
| Specification | Status | Comment |
|---|---|---|
| DOM The definition of 'Event.isTrusted' in that specification. |
Living Standard | |
| Document Object Model (DOM) Level 3 Events Specification The definition of 'Trusted events' in that specification. |
Obsolete | Adds requirements regarding trusted and untrusted events, though it does not itself define the isTrusted property. |
Browser compatibility
The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
isTrusted | Chrome
Full support
46
| Edge Full support 12 | Firefox Full support Yes | IE
No support
No
| Opera
Full support
33
| Safari Full support 10 | WebView Android
Full support
46
| Chrome Android
Full support
46
| Firefox Android Full support Yes | Opera Android
Full support
33
| Safari iOS Full support 10 | Samsung Internet Android
Full support
5.0
|
Legend
- Full support
- Full support
- No support
- No support
- See implementation notes.
- See implementation notes.
