La propiedad SVG Document.documentElement devuelve el elemento raíz del documento.
Sintaxis:
const element = document.documentElement
Valor devuelto: esta propiedad devuelve el elemento raíz del documento.
Ejemplo 1:
HTML
<!DOCTYPE html> <html> <body> <svg width="350" height="500" xmlns="http://www.w3.org/2000/svg"> <circle cx="100" cy="100" r="50"></circle> <script> console.log(document.documentElement) </script> </svg> </body> </html>
Producción:
Ejemplo 2:
HTML
<!DOCTYPE html> <html> <body> <svg width="350" height="500" xmlns="http://www.w3.org/2000/svg"> <text x="20" y="20">GeeksforGeeks</text> <script> console.log(document.documentElement) </script> </svg> </body> </html>
Producción: