FREE Web Template Download
HTML CSS JAVASCRIPT SQL PHP BOOTSTRAP JQUERY ANGULARJS TUTORIALS REFERENCES EXAMPLES Blog
 

HTML DOM isId Property

Attributes Object Reference Attribute Object

Example

Find out if an attribute is the element's ID attribute or not:

var x = document.getElementById("demo").attributes[0].isId;

The result of x could be:

true
Try it Yourself »

Definition and Usage

The isId property returns true if the attribute is of type ID, otherwise it returns false.

This property is read-only.


Browser Support

Property
isId Not supported Not supported Not supported Not supported Not supported

Note: This property was supported in Chrome, Firefox and Safari 5+, but support has been removed.


Syntax

attribute.isId

Technical Details

Return Value: A Boolean, returns true if the attribute is of type ID, otherwise false
DOM Version Core Level 3

Attributes Object Reference Attribute Object