HTML DOM hasAttributes() Method
Example
Find out if the <body> element has any attributes:
var x = document.body.hasAttributes()
Try it Yourself »
Definition and Usage
The hasAttributes() method returns true if the specified node has any attributes, otherwise false.
If the specified node is not an Element node, the return value is always false.
Browser Support
The numbers in the table specify the first browser version that fully supports the method.
Method | |||||
---|---|---|---|---|---|
hasAttribute() | Yes | 9.0 | Yes | Yes | Yes |
Syntax
node.hasAttributes()
Parameters
None |
Technical Details
Return Value: | A Boolean, returns true if the node has attributes, otherwise false |
---|---|
DOM Version | Core Level 2 Node Object |