Open In App
Related Articles

SVG Document.image Property

Improve Article
Improve
Save Article
Save
Like Article
Like

The SVG Document.image property returns the collection of images in the current HTML document.

Syntax:

var imageCollection = document.images

Return value: This property returns the collection of images in the current HTML document.

Example:

HTML




<!DOCTYPE html>
<html>
  
<body>
        cdn-uploads/20200817185016/gfg_complete_logo_2x-min.png">
  
    <svg width="700" height="500" 
        xmlns="http://www.w3.org/2000/svg">
          
        <script>
            console.log(document.images);    
        </script>
    </svg>
</body>
  
</html>

Output:

Last Updated : 30 Mar, 2022
Like Article
Save Article
Similar Reads
Related Tutorials