How to instantly scroll window to some position with JavaScript, when smooth-scrolling is enabled?
:root {
scroll-behavior: smooth;
}
Is there a way to ignore this CSS rule? Something like this:
window.scrollBy({ top: 0, behavior: 'instantly' });