jQuery.Marquee icon indicating copy to clipboard operation
jQuery.Marquee copied to clipboard

IE edge version 40 Marquee doesn't work

Open drgnbear opened this issue 7 years ago • 2 comments

It shows the content frozen as if the plugin isn't instantiated. There are NO console errors. it just doesn't do anything. No way to debug the error.

https://upstreammusicfest.com

works fine on versions 25 and 38 (the other 2 we could find)

drgnbear avatar Apr 30 '18 21:04 drgnbear

I'm having the same issue with IE 11. Did you managed to workaround this issue?

fernandoagomezf avatar Sep 22 '18 17:09 fernandoagomezf

I was having this issue too.

Before:

$(document).ready(function () {
    $(window).on('load', function () {
        $('.jobsTicker').marquee({
            duration: 15000,
            gap: 50,
            delayBeforeStart: 0,
            direction: 'left',
            duplicated: true,
            pauseOnHover: true
        });

        $('.jobsTicker .tickerItem').addClass('fadeIn');
    });
});

After:

$(document).ready(function () {
    $('.jobsTicker').marquee({
        duration: 15000,
        gap: 50,
        delayBeforeStart: 0,
        direction: 'left',
        duplicated: true,
        pauseOnHover: true
    });

    $('.jobsTicker .tickerItem').addClass('fadeIn');
});

Removing the window load fixes it for me on IE and Edge, if you have yours like mine you could give this a bash too. Cheers!

rydncn avatar Jan 07 '19 10:01 rydncn