I use jquery-nicescroll:
$(this.refs.container).niceScroll({
cursorcolor: '#f16221',
cursorwidth: '14',
cursorminheight: '64',
scrollspeed: '50',
autohidemode: 'false',
overflowy: 'false'
})
Currently it has both scrollbars: vertical and horizontal. I need to hide/disable vertical scrollbar but haven't found a solution. I have tried adding overflowy: 'false'
but it didn't work. There is horizrailenabled: false
which works well but there is no option for vertical.
Similar question: Disable Vertical Scroll in niceScroll Js
How to hide vertical scrollbar using nicescroll?