document.querySelectorAll("h2")
    .forEach(e => {
        e.onclick = () => window.location.hash = e.parentElement.id;
    });