mirror of
https://github.com/soapingtime/diyhrt.git
synced 2026-03-23 07:36:38 +00:00
8 lines
296 B
JavaScript
8 lines
296 B
JavaScript
fetch('nav.html')
|
|
.then(res => res.text())
|
|
.then(text => {
|
|
let oldElem = document.querySelector("script#replace_with_navbar");
|
|
let newElem = document.createElement("div");
|
|
newElem.innerHTML = text;
|
|
oldElem.parentNode.replaceChild(newElem, oldElem);
|
|
})
|