HTMLScriptElement: crossOrigin property
Baseline Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since August 2016.
ThecrossOrigin property of theHTMLScriptElement interface reflects theCross-Origin Resource Sharing settings for the script element. For classic scripts from otherorigins, this controls if full error information will be exposed. For module scripts, it controls the script itself and any script it imports. SeeCORS settings attributes for details.
In this article
Value
A string of a keyword specifying the CORS mode to use when fetching the resource. Possible values are:
anonymousor an empty string ("")Requests sent by the
HTMLScriptElementwill use thecorsmode and thesame-origincredentials mode. This means that CORS is enabled and credentials are sentif the resource is fetched from the same origin from which the document was loaded.use-credentialsRequests sent by the
HTMLScriptElementwill use thecorsmode and theincludecredentials mode. All resources requests by the element will use CORS, regardless of which domain the fetch is from.
If thecrossOrigin property is specified with any other value, it is the same as specifying it as theanonymous.
If thecrossOrigin property is not specified, the resource is fetched without CORS (theno-corsmode and thesame-origincredentials mode).
Specifications
| Specification |
|---|
| HTML> # dom-script-crossorigin> |