Document.currentScript

Returns the <script> element whose script is currently being processed.

SyntaxEdit

var curScriptElement = document.currentScript;

ExampleEdit

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

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

View Live Examples

NotesEdit

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.

SpecificationsEdit

Specification Status Comment
WHATWG HTML Living Standard
The definition of 'Document.currentScript' in that specification.
Living Standard Initial definition

Browser compatibilityEdit

Feature Chrome Edge Firefox (Gecko) Internet Explorer Opera Safari
Basic support 29.0 (Yes) 4.0 (2.0) No support 16 8

See alsoEdit

Document Tags and Contributors

 Last updated by: JamesGreene,