IE9 problems - Appears that my slider won't even slide. What gives?

455 Views Asked by At

I've got a site up at www.alexjamesfraser.com. It's using the Anythingslider jquery plugin big time. It works well enough under the latest versions of firefox and chrome but under IE9, the slider appears not to work at all. I have no idea why this is so and was hoping I could get some help here.

So, that's my question. I wish I could be more specific, but I'm sort of at a loss to even understand what I've done wrong. Hopefully some one can help and if you need any more information from me, please do not hesitate to ask.

Thank you very much.

1

There are 1 best solutions below

3
On

I had to dig a bit, but I see the problem now. When AnythingSlider is initialized, it's on an empty list (I don't think </li> is really valid either, leave it empty or use <li/>):

<ul class="slider" id="slider1">
    </li>
</ul>

which is fine, but then in the initialization callback, the current page is undefined because there are no pages:

onInitialized: function(e, slider1) {
    updateCaption1(slider1); 
}

caption function:

var updateCaption1 = function(slider1){
    // slider1.$currentPage is undefined because there are no slides!
    var cap = slider1.$currentPage.find('.caption1').html();
    $('.current-caption1')
        .html(cap)
        .fadeIn(200);
};

The slider1.$currentPage is undefined, and even the slider1.currentPage value is zero.

So, either remove the onInitialized functions, or update the caption after the slider gets updated with content.