Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

IE edge version 40 Marquee doesn't work #133

Open
drgnbear opened this issue Apr 30, 2018 · 2 comments
Open

IE edge version 40 Marquee doesn't work #133

drgnbear opened this issue Apr 30, 2018 · 2 comments

Comments

@drgnbear
Copy link

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)

@fernandoagomezf
Copy link

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

@rydncn
Copy link

rydncn commented Jan 7, 2019

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!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants