Open In App

SVG Document.head Property

Improve
Improve
Improve
Like Article
Like
Save Article
Save
Share
Report issue
Report

The SVG Document.head property returns an object which contains the information about the head of the document.

Syntax:

var objRef = document.head

Return value: This property returns an object which contains the information about the head of the document.

Example 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>


Output:

Example 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>


Output:



Last Updated : 30 Mar, 2022
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads