Skip to content

Instantly share code, notes, and snippets.

@nola
Forked from johnpolacek/gist:3827270
Last active August 29, 2015 14:27
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nola/9cbf2046da3d4f0b9928 to your computer and use it in GitHub Desktop.
Save nola/9cbf2046da3d4f0b9928 to your computer and use it in GitHub Desktop.
Prevent FOUC
<!-- Prevent FOUC (flash of unstyled content) - http://johnpolacek.com/2012/10/03/help-prevent-fouc/ -->
<style type="text/css">
.no-fouc {display: none;}
</style>
<script type="text/javascript">
document.documentElement.className = 'no-fouc';
// add to document ready: $('.no-fouc').removeClass('no-fouc');
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment