Skip to content

Instantly share code, notes, and snippets.

View AndrewEQ's full-sized avatar

Andrew Quan AndrewEQ

  • Red Blueprint Tech (@rbtech)
  • Johannesburg, South Africa
View GitHub Profile
<!-- Prevent FOUC (flash of unstyled content) - http://johnpolacek.com/2012/10/03/help-prevent-fouc/ -->
<style type="text/css"> .no-fouc {display: none;} </style>
<noscript><style type="text/css"> .no-fouc { display: inline; } </style></noscript>
<!-- place in head or end of body -->
<script type="text/javascript">
document.documentElement.className = 'no-fouc';
// add to document ready: $('.no-fouc').removeClass('no-fouc');
</script>