Lof JSliderNews 1.0 (jQuery), IE9 issue

I use Lof JSliderNews 1.0 - JQuery 1.3 on my companies website, but it seems to work sporadically in IE 9, it seems to work in any other browser. Does anyone else use a slider and have tested it with IE9?

I use it here .

Greetings

Wayne

+3
source share
2 answers

Just updating "isPreloaded: false" works fine 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
  }); 
})
+5
source

Bt after adding the ispreloaded property it does not work, i.e. 7

0
source

All Articles