I have this website where I got different modals. In these modals you can scroll but when you are at the end of the modal content the page is scrolling. So my first solution I came up with is:
$('.btn-open-modal').click(function(e) {
e.preventDefault();
$('body').css('overflow', 'hidden');
});
$('.btn-close-modal').click(function(e) {
e.preventDefault();
$('body').css('overflow', 'auto');
});
Are there any better solutions because I heard that this solution can cause trouble because the page will become a bit wider when the scroll bar is hidden.