IE8 and below not supported when they could be
-
code for watching scroll is
document.addEventListener('scroll', onScroll);
but should have an IE fallback like
if (document.addEventListener) { document.addEventListener('scroll', onScroll); } else { document.attachEvent('scroll', onScroll); }
- The topic ‘IE8 and below not supported when they could be’ is closed to new replies.