Propiedad SVG Document.head

La propiedad SVG Document.head r

Sintaxis:

var objRef = document.head

Valor devuelto: Esta propiedad r

Ejemplo 1: 

HTML

<!DOCTYPE html> 
<html> 
<head>
    <title>Title</title>
</head>
<body> 
    <svg width="350" height="500" 
        xmlns="http://www.w3.org/2000/svg">
  
        <script>
            console.log(document.head)
        </script>
    </svg>
</body> 
  
</html>

Producción:

Ejemplo 2: 

HTML

<!DOCTYPE html> 
<html> 
<head>
    <title>GeeksforGeeks</title>
</head>
<body> 
    <svg width="350" height="500" 
        xmlns="http://www.w3.org/2000/svg">
  
        <script>
            console.log(document.head)
        </script>
    </svg>
</body> 
  
</html>

Producción:

Publicación traducida automáticamente

Artículo escrito por taran910 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *