How can I stop scrolling with jquery when scrolling reaches a specific section or block on my page?
and how can I resume scrolling when I click a button or link in this section?
and thank you in advance.
Using mouse wheel
$('body').on({ 'mousewheel': function(e) { if (e.target.id == 'domid') return; e.preventDefault(); e.stopPropagation(); } });
Source: https://habr.com/ru/post/1543474/More articles:OpenCV C ++ Convert to Java for form detection - javaWhat is an Ember way to convert extracted Ember Data records to simple objects? - javascriptSpriteKit and scrollable list - iosSimple Java multithreading test does not work - javaЛисты контура Compass Sprite с папкой Webroot - sassThe best approach to using the Arrange-Act-Assert pattern while waiting for an exception - c #Jenkins: Sending emails for each build step leads to the same Jenkins Job - emailСоздание файлов сборки CMake в исходном каталоге - cmakeNLog: transition from nlog.config to software configuration - c #https://translate.googleusercontent.com/translate_c?depth=1&pto=aue&rurl=translate.google.com&sl=ru&sp=nmt4&tl=en&u=https://fooobar.com/questions/1543479/php-repository-pattern-implementation-questions&usg=ALkJrhjWHP34bTUsu2nxIXqeWbgtkwJQVQAll Articles