mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-01 00:38:50 +02:00
8 lines
252 B
HTML
8 lines
252 B
HTML
<!DOCTYPE html>
|
|
<script>
|
|
window.addEventListener("hashchange", (event) => {
|
|
history.replaceState(null, "", "#inject");
|
|
history.pushState(null, "", "#" + event.newURL.split("#")[1]);
|
|
});
|
|
</script>
|
|
<a id="link" href="#1">link</a>
|