const parser = new DOMParser(); fetch("/_bottomnav.html") .then(response => response.text()) .then(text => { const bottomNav = parser.parseFromString(text, "text/html"); document.body.appendChild(bottomNav.getElementById("bottomnav")); });