Document: currentScript property

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since July 2015.

  • import.meta instead.)

    It's important to note that this will not reference the <script> element if the code in the script is being called as a callback or event handler; it will only reference the element while it's initially being processed.

Value

Examples

This example checks to see if the script is being executed asynchronously:

js
if (document.currentScript.async) {
  console.log("Executing asynchronously");
} else {
  console.log("Executing synchronously");
}

HTML
# dom-document-currentscript-dev

Browser compatibility

BCD tables only load in the browser

See also