I have a template that when user use mouse wheel the template scroll horizontally .
but it just work in chrome .
is there any way to scroll horizontally in firefox and IE ?
here is a demo : http://jsfiddle.net/VhERd/
and jquery :
<script>
$(function() {
$("body").mousewheel(function(event, delta) {
this.scrollLeft -= (delta * 30);
event.preventDefault();
});
});
</script>
<script src="http://css-tricks.com/examples/HorzScrolling/jquery.mousewheel.js"></script>
and at the end sry for my english ;)