Website doesn't load properly in Safari browser Website doesn't load properly in Safari browser wordpress wordpress

Website doesn't load properly in Safari browser


Try replacing jQuery(window).load(function(){with the following

$(document).ready(function() {    // Fadeout the screen when the page is fully loaded    $('.loadingContainer').fadeOut();});

As far as I know there is no need to specify jquery in the code. In my example jquery will automatically handle the fadeOut() handler. The rest of the code can be handled by the core Javascript. I also use this code in my website, and it works flawlessly on every operating system (even android).


I can't reproduce your issue. Perhaps did you remove the "loadingcontainer" from your site?

To say about your code, you will need to define the "stretchdelay" animation.

@keyframes stretchdelay {    from {opacity: 0;}    to {opacity: 1;}}@-webkit-keyframes stretchdelay {    from {opacity: 0;}    to {opacity: 1;} }