I have a problem where the images load, then go to the preload image only in IE
Any help greatly appreciated.
Cheers,
I have a problem where the images load, then go to the preload image only in IE
Any help greatly appreciated.
Cheers,
I commented out the #main preloader in custom.js and it now works, is there are work around just for IE?
This fix is also needed for Opera: http://www.kriesi.at/support/topic/images-of-newslider-in-opera-problem
To exclude Opera and IE replace following code:
if(slideCount > 1)
{
slideWrapper.kriesi_image_preloader({delay:50}); // Opera Fix
slideWrapper.methods.preloadingDone();
}
with
if(slideCount > 1)
{
if(!($.browser.opera || $.browser.msie)){
slideWrapper.kriesi_image_preloader({delay:50}); // Opera Fix & MSIE
}
slideWrapper.methods.preloadingDone();
}
The Dude
You must log in to post.