I am currently using CSS to enable scrolling up and down a popup page with just the mousewheel, but I'm facing an issue with it not working in FireFox. Surprisingly, it works fine in Chrome with the use of overflow-x:hidden; and overflow-y:auto; properties.
I attempted to utilize the jQuery Mousewheel Plugin jquery.mousewheel.min.js to achieve a scrollbar-free scrolling experience within a page, but unfortunately, I couldn't get it to work. Is there something specific that FireFox requires in order to allow scrolling up and down a page solely using the mousewheel? Perhaps some tweaking in CSS, Javascript, or jQuery is needed?
HTML
<div class="test">
<div class="inner">blah blah blah
</div>
</div>
CSS
.test{
display:inline-block;
overflow-x:hidden;
overflow-y:auto;
margin:0 auto;
}
.inner{
float:left;
overflow-x:hidden;
overflow-y:auto;
}