Skip to content

Instantly share code, notes, and snippets.

@quangbahoa
Last active November 27, 2016 12:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save quangbahoa/fa5bc12ec860cf769f41ff08c8121efa to your computer and use it in GitHub Desktop.
Save quangbahoa/fa5bc12ec860cf769f41ff08c8121efa to your computer and use it in GitHub Desktop.
FOUC
<script>
jQuery(function($) {
    $('body').hide();
    $(window).load(function(){
        $('body').show();
    });
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment