files/en-us/web/css/reference/at-rules/@media/scripting/index.md
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
scriptingmedia feature may not work as expected.
The scripting feature is specified as a keyword value chosen from the list below.
none
initial-only
enabled
<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;
}
}
{{EmbedLiveSample("Examples")}}
{{Specifications}}
{{Compat}}