Skip to content

Instantly share code, notes, and snippets.

@tinylinden
Last active November 9, 2022 20:05
Show Gist options
  • Save tinylinden/f0f7cbbc7e7179e7db9171cc9909f420 to your computer and use it in GitHub Desktop.
Save tinylinden/f0f7cbbc7e7179e7db9171cc9909f420 to your computer and use it in GitHub Desktop.
fetch('/bar.html')
.then(response => response.text())
.then(text => {
document.open()
document.write(text)
document.close()
window.history.replaceState(null, '', '/bar.html')
})
.catch(error => {
// handle the error
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment