until styling has been fully applied*/
$(document).ready(function() {
var is_chrome = /chrome/i.test( navigator.userAgent );
if(is_chrome){
$(‘body’).hide();
$(‘footer’).hide();
var checkID = $(“body”).attr(“id”);
setInterval(function(){
var text = $(“body”).css(“background-color”);
if(text==”rgb(255, 255, 253)”) {
$(“body”).attr(‘id’, ‘done’);
$(‘body’).show();
$(‘footer’).show();
$(“body”).css( “background-color”, “#ffffff” );}}, 100);
}});