StopTheScript noscript test

This is a test page to demonstrate the <noscript> HTML element and how the web browser extension StopTheScript can bypass <noscript>.

Normally you see "JavaScript is enabled" in bold below. With StopTheScript enabled on this website, you see "JavaScript is disabled" in bold below. But if you turn off the StopTheScript setting "Show HTML <noscript> elements", you see neither.

Here's the source code:

<noscript>
<h2>
JavaScript is disabled
</h2>
</noscript>

<h2 hidden id="h2Hidden">
JavaScript is enabled
</h2>

<script>
document.getElementById("h2Hidden")
.hidden = false;
</script>

Home