Skip to content
Related Articles
Get the best out of our app
GeeksforGeeks App
Open App
geeksforgeeks
Browser
Continue

Related Articles

HTML | DOM isId Property

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

The isId Property contains a boolean value which returns a true if the Element has an attribute type of ID, otherwise, it returns a false or undefined value. This Property is used for read-only. 
Syntax: 
 

attribute.isId 

Return Value: It returns a Boolean value i.e true if the attribute type is ID, else it returns a false . 
Example: 
 

html




<!DOCTYPE html>
<html>
 
<head>
    <title>DOM isID property</title>
</head>
 
<body>
    <center>
        <h1 style="color:green;">GeeksforGeeks</h1>
        <h2> DOM isId Property</h2>
 
        <button onclick="geeks()">Submit</button>
        <p id="sudo"></p>
 
        <script>
            function geeks() {
                var x = document.getElementById("sudo");
                x.innerHTML = x.attributes[0].isId;
            }
        </script>
    </center>
</body>
 
</html>

Output: 
Before clicking the submit button: 
 

After clicking the submit button: 
 

Supported Browser: No major browser support the DOM isID property.
 

My Personal Notes arrow_drop_up
Last Updated : 11 Aug, 2021
Like Article
Save Article
Similar Reads
Related Tutorials