I carefully read the question 'Official way to ask jQuery wait for all images to load before executing something', but IE is giving me a hard time.
I want to fade in some images after the background image has load, so thanks for the explanation, all is working well on FF, Safari and Chrome. It doesn't seem to work on IE though. Tried it on two different computers, with IE version 8 (8.0.7).
Can someone advise me on this one please? My website is http://www.laforcemajeure.nl
This is my code, which is on the bottom of my script.js file:
$(window).load(
function() {
$("#allbirds").fadeIn(2000);
}
);