I tried using $("body").niceScroll({horizrailenabled:false});
and body{overflow-x: hidden}
but both didn't work. I have horizontal scroll on some resolutions like on 480px
, not on all.
Asked
Active
Viewed 6,116 times
0

fasteque
- 4,309
- 8
- 38
- 50

user3824222
- 1
- 1
- 2
1 Answers
4
You have to pass the param to the plugin:
$("#boxscroll").niceScroll({horizrailenabled:false});
and then remove the native scroll from the element:
<div id="boxscroll" style="overflow-x:hidden;"></div>
It is well documented on the nicescroll repo here: https://github.com/inuyaksa/jquery.nicescroll/issues/114

Petter Friberg
- 21,252
- 9
- 60
- 109

Oscar Cosimo
- 51
- 6