I have a problem with IE10 (or IE 10 render mode) where the elements are created but hidden with opacity 0, some how its not changing them on scroll

It happens with all elements on IE10? Or a specific one?
No confirmation since September and no other issues like this. I presume it's working fine, there was some work regarding IE's in the meanwhile.
I have the same issue, class aos-animate not added in ie10,
I cant to understand why this code: el.node.classList.add('aos-animate'); not working =(((
I'm having the same issue. Exactly what the original message was.
@michalsnik
me too
me too
me too
FYI I just went with the option of not having the animation work on IE for now:
function msieversion() {
var ua = window.navigator.userAgent;
var msie = ua.indexOf("MSIE ");
if (msie > 0)
{
$("[data-aos^=fade][data-aos^=fade]").css("opacity", "1");
}
}
$(document).ready(function (){
msieversion()
});
me too :(
Same here. Doesn't work in IE 10. All elements on the page remain hidden, even on scroll.
Having the same issue on E10.
Me too... Has anyone found a solution to this?
Edit message:
I apologize, Console signaled AOS, but problem was caused by another script.
Any luck with this issue IE 10 issue? I'm using the basic installation, and the first element on the page will animate just fine, but the others remain hidden on scroll. Note: IE 11 and Edge work fine.
I have the same issue. The first element animates in. None of the other elements will animate.
Same issue.
Same
Most helpful comment
FYI I just went with the option of not having the animation work on IE for now:
function msieversion() {
var ua = window.navigator.userAgent;
var msie = ua.indexOf("MSIE ");
}
$(document).ready(function (){
msieversion()
});