Open In App

SVG Element.part Property

Last Updated : 30 Mar, 2022
Comments
Improve
Suggest changes
Like Article
Like
Report

The SVG Element.part property returns a DOMTokenList which represents the part identifiers for the given element.

Syntax:

let elementPartList = element.part

Return value: This property returns a DOMTokenList which represents the part identifiers of the given element.

Example 1:

HTML
<!DOCTYPE html>
<html>

<body>
    <svg width="350" height="100" 
        xmlns="http://www.w3.org/2000/svg">
        
        <a href="https://www.geeksforgeeks.org" id="gfg">
            <text x='100' y='50' font-size="50px">GfG</text>
        </a>
        
        <script>
            var g = document.getElementById('gfg');
            g.part = 'geeksforgeeks';
            console.log(g.part);
        </script>
    </svg>
</body>

</html>

Output:

Example 2: 

HTML
<!DOCTYPE html>
<html>

<body>
    <svg width="350" height="500" 
        xmlns="http://www.w3.org/2000/svg">
        
        <a href="https://www.geeksforgeeks.org" id="gfg">
            <circle cx='100' cy='100' r="100"></circle>
        </a>
        
        <script>
            var g = document.getElementById('gfg');
            g.part = 'geeksforgeeks';
            console.log(g.part);
        </script>
    </svg>
</body>

</html>

Output:


Next Article

Similar Reads