La propiedad SVG AElement.href devuelve un objeto SVGAnimatedLength correspondiente al atributo del elemento A dado
Sintaxis:
AElement.href
Valor devuelto: Esta propiedad vuelve a
Ejemplo 1:
<!DOCTYPE html> <html> <body> <svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"> <!-- A link around a shape --> <a href="https://www.geeksforgeeks.org" id="gfg"> <circle cx="20" cy="40" r="15" /> </a> <script> var g = document.getElementById("gfg"); console.log(g.href); </script> </svg> </body> </html>
Producción:
Ejemplo 2:
<!DOCTYPE html> <html> <body> <svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"> <!-- A link around a text --> <a href="https://www.geeksforgeeks.org" id="gfg"> <text x="40" y="20" text-anchor="middle"> <gfg> </text> </a> <script> var g = document.getElementById("gfg"); console.log(g.href); </script> </svg> </body> </html>
Producción:
Referencia: https://developer.mozilla.org/en-US/docs/Web/API/SVGAElement