Anyone have any ideas why scrollTop isn\'t working in IE?
It works in Chrome fine, and I don\'t know about firefox. (The idea of this script is to have an autoscroll
Solution for EDGE needs to set scrollTop on scrollingElement document property:
document.scrollingElement.scrollTop= x; // x is integer value
But you have to ensure, that CSS on HTML element has set overflow to default value (visible):
html { overflow: visible; }