Open In App

SVG Document.scripts Property

Last Updated : 23 Jul, 2025
Comments
Improve
Suggest changes
Like Article
Like
Report

The SVG Document.scripts property returns the list of script element in the document.

Syntax:

var scriptList = document.scripts

Return value: This property returns the list of script element in the document.

Example 1: 

HTML
<!DOCTYPE html>
<html>

<body>
    <script></script>
    <svg width="700" height="500" 
        xmlns="https://www.w3.org/2000/svg">
        <script>
            console.log(document.scripts);
        </script>
    </svg>
</body>

</html>

Output:

Example 2: 

HTML
<!DOCTYPE html>
<html>

<body>
    <script></script>
    <script></script>
    <script></script>
    <script></script>
    <script></script>
    <svg width="700" height="500" 
        xmlns="https://www.w3.org/2000/svg">
        <script>
            console.log(document.scripts);
        </script>
    </svg>
</body>

</html>

Output:


Similar Reads