saoulbonmonsieur/js/componentloader.js
2023-06-18 16:12:32 +02:00

16 lines
No EOL
392 B
JavaScript

function load(url, element) {
fetch(url).then(res => {
return res.text();
}).then(htmltext => {
element.innerHTML = htmltext;
}).catch(
function (err) {
console.warn('Could not load the Navbar.', err)
}
);
}
window.addEventListener('load', function () {
load("../components/navbar.html", document.getElementById("navbar"));
})