DOMImplementation: hasFeature() method
Deprecated: This feature is no longer recommended. Though some browsers might still support it, it may have already been removed from the relevant web standards, may be in the process of being dropped, or may only be kept for compatibility purposes. Avoid using it, and update existing code if possible; see thecompatibility table at the bottom of this page to guide your decision. Be aware that this feature may cease to work at any time.
TheDOMImplementation.hasFeature() method returns aboolean flag indicating if a given feature is supported. It isdeprecated and modern browsers returntrue in all cases.
The different implementations fairly diverged in what kind of features were reported.The latest version of the spec settled to force this method to always returntrue, where the functionality was accurate and in use.
In this article
Syntax
hasFeature(feature, version)Parameters
Return value
A boolean value oftrue.
Specifications
| Specification |
|---|
| DOM> # dom-domimplementation-hasfeature> |
Browser compatibility
See also
- The
DOMImplementationinterface it belongs to.