user2625152
user2625152

Reputation: 517

Cannot disable scroll on android browser

$('body').css('overflow-y', 'hidden');

I use this in my javascript file to hide the scroll bar. This works for all browsers except for android browsers. Is there any alternative way to hide the scroll bar for android browsers?

Upvotes: 0

Views: 565

Answers (1)

Alex Faunt
Alex Faunt

Reputation: 589

Try setting it on the html element too:

$('html, body').css('overflow-y', 'hidden');

Upvotes: 1

Related Questions