This is an experimental technology
Check the Browser compatibility table carefully before using this in production.
The supports()
method of the DOMTokenList
interface returns true
if a given token is in the associated attribute's supported tokens. This method is intended to support feature detection.
var boolean = element.supports(token)
token
DOMString
containing the token to query for.A Boolean
indicating whether the token was found.
var iframe = document.getElementById('display'); if (iframe.sandbox.supports('an-upcoming-feature')) { // support code for mystery future feature } else { // fallback code } if (iframe.sandbox.supports('allow-scripts')) { // instruct frame to run JavaScript // NOTE: this is well-supported, and just an example! }
Specification | Status | Comment |
---|---|---|
Credential Management Level 1 | Working Draft | Initial definition. |
Desktop | ||||||
---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | |
Basic support | 50 | 17 | 49 | No | Yes | ? |
Mobile | |||||||
---|---|---|---|---|---|---|---|
Android webview | Chrome for Android | Edge Mobile | Firefox for Android | Opera for Android | iOS Safari | Samsung Internet | |
Basic support | 50 | 50 | 17 | 49 | Yes | No | 5.0 |
© 2005–2018 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/DOMTokenList/supports