Skip to content

Instantly share code, notes, and snippets.

@barrd
Forked from johnpolacek/gist:3827270
Last active February 26, 2021 19:57
Show Gist options
  • Save barrd/e34d5a2832da339910ab6ba180ac0dfe to your computer and use it in GitHub Desktop.
Save barrd/e34d5a2832da339910ab6ba180ac0dfe to your computer and use it in GitHub Desktop.
Prevent FOUC (flash of unstyled content)
<!-- @see http://johnpolacek.com/2012/10/03/help-prevent-fouc -->
<!-- WordPress implementation -->
<!-- Add to header -->
<style type="text/css">
.no-fouc {display: none;}
</style>
<script>
document.documentElement.className = 'no-fouc';
</script>
<!-- Add to footer -->
<script>
jQuery(document).ready(function( $ ) {
$('.no-fouc').removeClass('no-fouc');
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment