View sourcecode

The following files exists in this folder. Click to view.

app.js

9 lines ASCII Unix (LF)
1
2
3
4
5
6
7
8
9
document.querySelectorAll('a[href^="#"]').forEach((anchor) => {
    anchor.addEventListener('click', function(e) {
        e.preventDefault();
        document.querySelector(this.getAttribute('href')).scrollIntoView({
            behavior: 'smooth'
        });
    });
});