Lof JSliderNews 1.0 (jQuery), IE9 problem
I'm using Lof JSliderNews 1.0 - Jquery 1.3 on my companies website bu开发者_JS百科t it only seems to work sporadically in IE 9, it seems to work in every other browser. Is anyone else using the slider and tested it with IE9?
I'm using it here.
Cheers
Wayne.
Just by updating the "isPreloaded: false" works great in IE9. Thanks @wayne I'm just updating the working code below:
$(document).ready( function(){
$obj = $('#slidecontent').lofJSidernews({
interval : 4000,
easing : 'easeInOutQuad',
duration : 1200,
auto : true,
isPreloaded : false, // for IE9
maxItemDisplay : 3,
startItem : 0,
navPosition : 'horizontal', // horizontal
navigatorHeight : 15,
navigatorWidth : 25,
mainWidth:920
});
})
Bt after added ispreloaded property it is not working in ie 7
精彩评论