Since December 2023, this feature works across the latest devices and browser versions. This feature might not work in older devices or browsers.
The scripting CSS media feature can be used to test whether scripting (such as JavaScript) is available.
Note: The detection is done by the browsers based on the user settings. Some browser extensions can implement script blocking using different techniques. In such cases the scripting media feature may not work as expected.
The scripting feature is specified as a keyword value chosen from the list below.
noneScripting is completely unavailable on the current document.
initial-onlyScripting is enabled during the initial page load, but not afterwards.
enabledScripting is supported and active on the current document.
<p class="script-none">You do not have scripting available. :-(</p> <p class="script-initial-only"> Your scripting is only enabled during the initial page load. Weird. </p> <p class="script-enabled">You have scripting enabled! :-)</p>
p {
color: lightgray;
}
@media (scripting: none) {
.script-none {
color: red;
}
}
@media (scripting: initial-only) {
.script-initial-only {
color: red;
}
}
@media (scripting: enabled) {
.script-enabled {
color: red;
}
}
| Specification |
|---|
| Media Queries Level 5> # scripting> |
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Chrome | Edge | Firefox | Opera | Safari | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | WebView Android | WebView on iOS | |
scripting |
120 | 120 | 113 | 106 | 17 | 120 | 113 | 80 | 17 | 25.0 | 120 | 17 |
© 2005–2025 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/CSS/@media/scripting