This is a simple script to add smooth scroll to anchor links on your website. When a user clicks on an anchor and goes to the different page and comes back to the page where the anchor link is, the page will scroll to the anchor link smoothly.
-
Run
npm install smooth-scroll-on-back-press
to install the package. -
Add the following code to your JavaScript file such as
app.js
import smoothScroll from 'smooth-scroll-on-back-press'; smoothScroll();
Now you are good to go. The script will automatically add smooth scroll to all the anchor links on your website.
You can see the example here.
The script will not work if there is no scroll on the page after the page load.