Hacker News new | ask | show | jobs
by vbezhenar 1078 days ago
Too bad that visibility:hidden will hide this noscript tag.

Disabled JS != disabled CSS.

1 comments

The only purpose of the noscript tag is turn the visibility back on and maybe setup some other noscript-specific styling.

<noscript> <style> body {visibility: visible; opacity: 1;} </style> </noscript>

Thanks for clarification, that’s a neat idea.