Skip to content

Instantly share code, notes, and snippets.

View carvajalluis's full-sized avatar
🏠
Working from home

Luis Carvajal carvajalluis

🏠
Working from home
  • Philadelphia
  • 22:10 (UTC -12:00)
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>
<script type="text/javascript">
document.documentElement.className = 'no-fouc';
// add to document ready: $('.no-fouc').removeClass('no-fouc');
</script>