Skip to content

Instantly share code, notes, and snippets.

@tonini
Created January 21, 2016 10:17
Show Gist options
  • Select an option

  • Save tonini/881930199ee7652f955c to your computer and use it in GitHub Desktop.

Select an option

Save tonini/881930199ee7652f955c to your computer and use it in GitHub Desktop.
<noscript>
<style>
body *{ /*hides all elements inside the body*/
display: none;
}
h1{ /* even if this h1 is inside head tags it will be first hidden, so we have to display it again after all body elements are hidden*/
display: block;
}
</style>
<h1>JavaScript is not enabled, please check your browser settings.</h1>
</noscript>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment