When I created navbar on my project I noticed that I can scroll on the website
and what I decided to do is to can noscroll function when the user will open navbar
function noscroll() {
window.moveTo(0, 0);
}
function menutoggle() {
if (menuItems.style.maxHeight == '0%') {
menuItems.style.maxHeight = '30%';
window.addEventListener('scroll', noscroll);
} else {
menuItems.style.maxHeight = '0%';
// How can I unable to scroll here?
}
}