Document.scripts

The scripts property of the Document interface returns a list of the <script> elements in the document. The returned object is an HTMLCollection.

Syntax

var scriptList = document.scripts;

Value

An HTMLCollection. You can use this just like an array to get all the elements in the list.

Example

This example looks to see if the page has any <script> elements.

let scripts = document.scripts;

if (scripts.length) {
  alert('This page has scripts!');
}

Specifications

Specification Status Comment
HTML Living Standard
The definition of 'Document.scripts' in that specification.
Living Standard

Browser compatibility

DesktopMobile
ChromeEdgeFirefoxInternet ExplorerOperaSafariAndroid webviewChrome for AndroidFirefox for AndroidOpera for AndroidSafari on iOSSamsung Internet
scriptsChrome Full support YesEdge Full support 12Firefox Full support 9IE Full support 4Opera Full support YesSafari Full support YesWebView Android Full support YesChrome Android Full support YesFirefox Android Full support 9Opera Android Full support YesSafari iOS Full support YesSamsung Internet Android Full support Yes

Legend

Full support
Full support