web/public/res/anchors.js
2024-03-29 16:17:59 +01:00

4 lines
No EOL
128 B
JavaScript

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