Skip to content

Instantly share code, notes, and snippets.

@rqreyes
Last active December 16, 2017 02:33
Show Gist options
  • Save rqreyes/e529ac9ad7e821c6d3fd17165a45cb07 to your computer and use it in GitHub Desktop.
Save rqreyes/e529ac9ad7e821c6d3fd17165a45cb07 to your computer and use it in GitHub Desktop.
fix ie and edge mousewheel jitter
if (navigator.userAgent.match(/Trident\//) || navigator.userAgent.match(/Edge\//)) {
document.body.addEventListener("mousewheel", function(evt) {
evt.preventDefault();
var wd = evt.wheelDelta;
var csp = window.pageYOffset;
window.scrollTo(0, csp - wd);
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment