Your Ad Here

Posted By

terrencewood on 08/17/10


Tagged

css javascript html


Versions (?)

Prevent FOUC in HTML


 / Published in: HTML
 

  1. <!-- add after the title tag -->
  2. <style>.js .js-hide{display:none}</style>
  3. <script>document.documentElement.className='js'</script>
  4.  
  5. <!-- add when page has loaded -->
  6. <script>jQuery(function($){$('html').removeClass('js')});</script>

Report this snippet  

You need to login to post a comment.