The <noscript> element as a trap
Summary
The article discusses the limitations of the <noscript> HTML element, which only provides fallback content when JavaScript is completely disabled, not when JavaScript fails due to other reasons. It recommends using DOM APIs to dynamically update content instead.
View Cached Full Text
Cached at: 05/14/26, 04:32 PM
Similar Articles
The unreasonable effectiveness of simple HTML
A blog post arguing for the continued relevance of simple HTML for universal accessibility, illustrated by a story of a woman using a PSP browser to access government services.
CSS: Unavoidable Bad Parts
A personal blog post by a non-web developer discusses the unavoidable bad parts of CSS, including layout challenges, browser defaults, and wrapper overuse, while highlighting a learnable subset for simple tasks.
Soon We Can Finally Banish JavaScript to the ShadowRealm
The article discusses the TC39 ShadowRealm proposal, which aims to allow JavaScript execution in isolated environments (realms) without using iframes or web workers, improving code sandboxing and performance.
Don't Roll Your Own …
The author expands the 'don't roll your own crypto' principle to web development, arguing against custom implementations of scrolling, link navigation, text selection, and other browser-native behaviors.
Avoid Using "< [Cdata[ ]]>" in RSS
The article argues that using CDATA sections in RSS/Atom feeds is problematic due to the special case of escaping the ']]>' sequence, and recommends using standard XML escaping instead for simplicity and uniformity.