Skip to content

Instantly share code, notes, and snippets.

@jthum
jthum / nav.js
Last active September 19, 2025 08:30
Simple SPA Navigation
const showPage = function() {
const page = window.location.hash || "#home";
document.querySelector("main > section:not([hidden])").hidden = true;
document.querySelector(page).hidden = false;
};
window.onload = window.onpopstate = history.onpushstate = showPage;