このチュートリアル(マウスホイールプラグインとスクリプト)を使用して水平スクロールページを作成しています:
http://css-tricks.com/snippets/jquery/horz-scroll-with-mouse-wheel/
スクロールはクロムでは機能しますが、Firefoxでは機能しません。チュートリアルのFirefoxでも機能しません。修正方法はありますか?
$(function() {
$("body").mousewheel(function(event, delta) {
this.scrollLeft -= (delta * 30);
event.preventDefault();
});
});