I am trying to find out whether it is possible to check if a background image has been loaded before fading in the content? The background image is set in the css so if the user doesnt have js turned on they are still able to view the site.
I have tried $(".quick-load").load(function () {
$("#content").fadeIn();
});
I have also used .ready() but none have had any effect.
The exact problem i am having is that the image will flicker on some occasions.
Any ideas would be helpful, thanks.