Im doing an horizontal scroll page using this tutorial (mousewheel plugin and script):
http://css-tricks.com/snippets/jquery/horz-scroll-with-mouse-wheel/
The scroll works on chrome but not on firefox, it doesn´t work on firefox in the tutorial also, any ideas how to fix it?
$(function() {
$("body").mousewheel(function(event, delta) {
this.scrollLeft -= (delta * 30);
event.preventDefault();
});
});