I am trying to disable IE11 smooth scrolling with the following code. Right after implementation, I could scroll smoothly but the next day I can't. There seems to be other similar topics, but None of them work. The os is Win10. What should I do next?
<script>
if(navigator.userAgent.match(/MSIE 10/i) || navigator.userAgent.match(/Trident\/7\./) || navigator.userAgent.match(/Edge\/12\./)) {
$('body').on("mousewheel", function () {
event.preventDefault();
var wd = event.wheelDelta;
var csp = window.pageYOffset;
window.scrollTo(0, csp - wd);
});
}
</script>