I am having an issue where setting overflow-x: hidden on the html and body elements is preventing the jquery scroll event from firing.
CSS:
html, bod
$(function() { $(window).bind('mousewheel', function(event, delta) { console.log("mousewheel"); return false; }); });