Propiedad SVG Element.className
La propiedad SVG Element.className se utiliza para r Sintaxis: var cName = element.className Valor devuelto: esta propiedad devuelve el nombre de clase Ejemplo 1: HTML <!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> … Continue reading «Propiedad SVG Element.className»