Is it possible to use smooth scroll to anchor links but without jQuery? I am creating a new site and I don\'t want to use jQuery.<
jQuery
Based on MDN docs for scroll options we can use the following code:
element.scrollTo({ top: 100, left: 100, behavior: 'smooth' });
In fact, the behavior key can accept smooth and auto variables. first for smooth motion and second for a single jump.
behavior
smooth
auto