The question is not about how <noscript> works, and why it's used, I'm fully aware of that.
Knowing that:
<noscript>only works when JavaScript is disabled by something browser-related (the browser itself or an extension). It doesn't work when JS is disabled by a firewall, for example.- A one-line alternative to
<noscript>exists (using, well, JS) and covers every aspect of it + the above-mentioned firewall-ish case.
After a few Google searches, the number of people talking about alternatives to <noscript> and those trying to find reasons not to use <noscript>, makes me think there might be something wrong with <noscript>.
How come awesome websites such as Stack Overflow and Twitter are using <noscript> tags instead of the well-known alternative everyone seems to prefer?
The alternative is along those lines:
<script>document.write('<style>.noscript { display: none; }</style>');</script>
<div class="noscript">Y U NO JS ACTIVATED?</div>

<noscript>tag won't work. This is because JavaScript is enabled in the browser (so, the<noscript>tag is ignored), but the script itself is blocked (so, it doesn't run). – Rocket Hazmat Apr 26 '12 at 20:05