November 2001
Intermediate to advanced
936 pages
68h 43m
English
Content preview from JavaScript: The Definitive Guide, Fourth EditionBecome an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
Start your free trial


Name
Node.isSupported( ) — determine if a node supports a feature
Availability
DOM Level 2 Core
Synopsis
boolean isSupported(Stringfeature, Stringversion);
Arguments
-
feature The name of the feature to test.
-
version The version number of the feature to test, or the empty string to test for support of any version of the feature.
Returns
true if the node supports the specified version of
the specified feature, and false if it does not.
Description
The W3C DOM standard is modular, and implementations are not required
to implement all modules or features of the standard. This method
tests whether the implementation of this node supports the specified
version of the named feature. See the
Section reference page for a
list of values for the feature and
version arguments.