Open In App

HTML DOM Script crossOrigin Property

HTML DOM Script crossOrigin property is used to set or return the value of the crossOrigin attribute of the <script> element. This attribute is used for specifying the HTTP CORS request when fetching or loading the stylesheet or javascript files from the third-party server.

Syntax:



scriptObject.crossOrigin;
scriptObject.crossorigin="anonymous | use-credentials;  

Property Values:

Example: Below HTML code returns the script cross-origin property.  






<!DOCTYPE html>
<html>
  
<head>
    <title>
        DOM script crossOrigin Property
    </title>
</head>
  
<body style="text-align:center;">
    <h1>GeeksForGeeks</h1>
    <h2>
        DOM script crossOrigin property
    </h2>
  
    <script id="myGeeks" type="text/javascript" 
        src="my_script.js" crossorigin="anonymous">
    </script>
    <br>
  
    <button onclick="Geeks()">Submit</button>
  
    <h2 id="demo"></h2>
  
    <script>
        function Geeks() {
            var x = document.getElementById(
                "myGeeks").crossOrigin;
            document.getElementById(
                "demo").innerHTML = x;
        }
    </script>
</body>
  
</html>

Output 

 

Supported Browsers:


Article Tags :