Good day! When you open the default page there is a condition to cancel the scroll.
function OffScroll () { var winScrollTop = $(window).scrollTop(); $(window).bind('scroll',function () { $(window).scrollTop(winScrollTop); });} OffScroll (); How can I restore the ability to scroll the page when I click on the <div class="open">Блок</div> ? Thanks for the help!