How to disable scrolling of body element?
- by Starx
How to disable scrolling of body?
$('body').css('overflow','hidden');
only hides the scrollbars but it does not disable the scrolling. I want to disable the scrolling of the body.
But I want to keep the scrolling of other division intact.