You’re welcome 🙂
At least for positioning (and showing) the popup, it did the trick.
There’s also another problem with the inline svg background-images (background-image: url(data/svg....)), as IE11 won’t render these. Curios enough though, it will show them if you include them as external file (background-image: url(facebook.svg)).
But more important things first: Happy snowboarding! 😉
Hey there,
I don’t know, if you’ve already solved it (internally), but for IE11 the problem lies with the usage of “window.scrollY”. This property is undefined in IE11. “window.pageYOffset” would be the compatible[1] way to get the value.
Hope that helps!
Cheers,
Alex
[1] https://developer.mozilla.org/de/docs/Web/API/Window/scrollY