Change Web URL Without Reload

PHOTO EMBED

Tue Oct 05 2021 03:36:20 GMT+0000 (Coordinated Universal Time)

Saved by @codingjlu #javascript

document.querySelectorAll("a").forEach(item => {
    item.addEventListener("click", e => {
        e.preventDefault();
        if(history.pushState) {
            history.pushState(null, null, e.target.href);
        }
        return false;
    });
});
content_copyCOPY