I am experiencing a problem on this website where I am unable to scroll.
Visit www.Batan.io
After loading the website for the first time, the trackpad (mac) works fine initially but then the scroll function stops working. Although the sidebar works, changing the CSS position has not resolved the issue.
Could someone please help me figure out why scrolling is not functioning on this particular website?
Thank you,
Thomas
$(function () {
$('body').bind('mousewheel', function (event) {
event.preventDefault();
var scrollTop = this.scrollTop;
this.scrollTop = (scrollTop + ((event.deltaY * event.deltaFactor) * -1));
//console.log(event.deltaY, event.deltaFactor, event.originalEvent.deltaMode, event.originalEvent.wheelDelta);
});
});