Reputation: 6561
I'm using jScrollPane to create a custom scroll bar style.
View my current code here: http://cwhitaker.com/deck/deck.html
The jScrollPane works in all modern browsers, but the ability to scroll only works in Webkit browsers (Safari & Chrome). Although in the jScrollPane demos the mouse scroll is fully functional in all browsers.
Maybe it has something to do with my columns using absolute position?
Upvotes: 0
Views: 672
Reputation: 20135
For me, the scroll bars were not working with mouse scroll on any browser on the referred webpage.
I copied the entire HTML, CSS and JavaScript code from the webpage referred to in the question to http://jsfiddle.net/ytQMs/. After making the following changes I was able to get mouse scroll working on all browsers:
I suggest making these changes in your code and trying out.
Upvotes: 2
Reputation: 108520
You mean scroll using mouseweel? Because I can scroll in firefox using drag&drop. I think you need another plugin to enable mousewheel support in all browsers.
If the mouse wheel plugin is included in the page then the scroll panes will respond to mouse wheel events as well
http://archive.plugins.jquery.com/project/mousewheel
Upvotes: 0