Comments Matthew started the conversationFebruary 28, 2014 at 12:07amHello! On IE 8 (and below), my slider doesn't load up -- it just acts as if it's loading but it never does. This site does have a more complicated slider, having YouTube Videos as part of the slider. Would you know if I could fix this? Thanks!drew repliedMarch 1, 2014 at 9:10pmDitto! Need some kinda patch for IE 8 Matthew repliedMarch 1, 2014 at 9:11pmBy patch, do you mean something I have to do on my end with IE 8 or is that an patch your team has to apply to Salient?Thanks again! 1,069ThemeNectar repliedMarch 4, 2014 at 4:25amHey Matthew! Anyway you could provide me a log in so I can see if I can find quick fix?Cheers :) Matthew replied privatelydrew repliedMarch 5, 2014 at 1:25amPlease help as well 1,069ThemeNectar repliedMarch 7, 2014 at 6:47am Just sorted it on your end Matthew! Drew - to fix this on your end open the init.js file located in the js folder and change this: //home slider init if($('#featured').length > 0 && $().orbit) { var $firstBg = $('#featured').find('.slide:first-child > article').attr('style'); var pattern = /url\(["']?([^'")]+)['"]?\)/; var match = pattern.exec($firstBg); if (match) { var slideImg = new Image(); slideImg.src = match[1]; $(slideImg).load(function(){ homeSliderInit(); }); } to this: //home slider init if($('#featured').length > 0 && $().orbit) { var $firstBg = $('#featured').find('.slide:first-child > article').attr('style'); var pattern = /url\(["']?([^'")]+)['"]?\)/; var match = pattern.exec($firstBg); if (match) { var slideImg = new Image(); slideImg.onload = function(){ homeSliderInit(); } slideImg.src = match[1]; } Cheers! Sign in to reply ...
Hello! On IE 8 (and below), my slider doesn't load up -- it just acts as if it's loading but it never does. This site does have a more complicated slider, having YouTube Videos as part of the slider. Would you know if I could fix this? Thanks!
Ditto! Need some kinda patch for IE 8
By patch, do you mean something I have to do on my end with IE 8 or is that an patch your team has to apply to Salient?
Thanks again!
Hey Matthew! Anyway you could provide me a log in so I can see if I can find quick fix?
Cheers :)
Please help as well
Just sorted it on your end Matthew!
Drew - to fix this on your end open the init.js file located in the js folder and change this:
to this:
Cheers!