Baseline Widely available
The scripts
property of the Document
interface returns a list of the <script>
elements in the document. The returned object is an HTMLCollection
.
An HTMLCollection
. You can use this just like an array to get all the elements in the list.
This example looks to see if the page has any <script>
elements.
js
let scripts = document.scripts;
if (scripts.length) {
alert("This page has scripts!");
}
Specifications Browser compatibility
Loadingâ¦
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.5