CSS for when JavaScript is Enabled

Avatar of Chris Coyier
Chris Coyier on
document.documentElement.className = "js"

This adds a class to the root <html>, so you could (for example) do something like hide a <div> only when JavaScript is enabled.

.js div#id { display: none; }