2

I am using java script/Jquery 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

Cᴏʀʏ
  • 105,112
  • 20
  • 162
  • 194
Deepak
  • 1,055
  • 4
  • 13
  • 22
  • 1
    You need to tell us more to get help: OS, GUI library, programming language – CharlesB Jul 08 '11 at 13:47
  • 1
    Disable it where? What sort of thing are you making, and which programming language are you making it in? We need more details! – Sebastian Paaske Tørholm Jul 08 '11 at 13:47
  • I am using java script/Jquery 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. – Deepak Jul 08 '11 at 13:59

1 Answers1

1

In your CSS:

overflow-y: hidden;

Might work

Joe
  • 80,724
  • 18
  • 127
  • 145
  • I need little more change here.It should display but it should not work only with mouse wheel. – Deepak Jul 08 '11 at 13:51