How I can stop vertical scroll by mouse
I am using java script/Jq开发者_开发技巧uery in web browser.I made a custom horizontal scroll bar which is working with mouse wheel or mouse scroll.commonly mouse scroll works with vertical bar.So it conflict with my programmed horizontal scroll bar. I dont want to remove vertical bar completely but just only to disable when we scroll our mouse.If you make sense then please suggest.
Regards,
Deepak
In your CSS:
overflow-y: hidden;
Might work
精彩评论