Answers for "stop body scrolling js"

7

javascript disable scrolling on body

document.body.style.overflow = 'hidden';
Posted by: Guest on August-17-2020
1

js stop scrolling event

function disableScrolling(){
    var x=window.scrollX;
    var y=window.scrollY;
    window.onscroll=function(){window.scrollTo(x, y);};
}

function enableScrolling(){
    window.onscroll=function(){};
}
Posted by: Guest on October-13-2021

Code answers related to "stop body scrolling js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language