Open In App

SVG Document.scripts Property

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: 






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

Output:

Example 2: 




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

Output:


Article Tags :