jQuery.Marquee
jQuery.Marquee copied to clipboard
IE edge version 40 Marquee doesn't work
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)
I'm having the same issue with IE 11. Did you managed to workaround this issue?
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!