I've been trying to enable/disable scrolling with javascript,
I managed to disable the scrolling however fail to put it back to working state,
so what I've tried is:
function noscroll() {
window.scrollTo(0, 0);
}
and I try to add and remove scrolling with the following lines of code
window.removeEventListener("scroll", noscroll);
window.addEventListener("scroll", noscroll);
any help is much appreciated
overflow:none- a js based approach like this might cause jittery scrolling effects