I have noticed that when I use "overflow-x: hidden" to hide horizontal scroll bars and prevent manual scrolling, that I can still scroll using arrow keys in Mozilla Firefox (this probably happens for mouse wheel as well but I don't have a mouse wheel to test it with).
In Google chrome hiding the scroll bars does prevent scrolling, which is the behavior I want because I want to control horizontal scrolling entirely with javascript.
How can I prevent the user from controlling the scrolling across all browsers?
Here is an example jsfiddle: http://jsfiddle.net/tDzpm/3/
body{
overflow-x: hidden;
}
I don't want the user to be able to scroll left and right in that fiddle.