Baseline Widely available
The Document.currentScript
property returns the <script>
element whose script is currently being processed and isn't a JavaScript module. (For modules use 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.
A HTMLScriptElement
or null.
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");
}
Specifications Browser compatibility See also
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4