Open In App

SVG Element.className Property

The SVG Element.className property is used to return the className of the given Element.

Syntax:



var cName = element.className

Return value: This property returns the className of the Element.

Example 1: 






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

Output:

Example 2: 




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

Output:


Article Tags :