Skip to content

Instantly share code, notes, and snippets.

View drementer's full-sized avatar
🔥
SEND DUDES

Burak drementer

🔥
SEND DUDES
  • Turkiye
View GitHub Profile
@johnpolacek
johnpolacek / gist:3827270
Last active June 1, 2025 19:04
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>