All checks were successful
Build and Deploy / deploy (push) Successful in 5s
9 lines
384 B
JavaScript
9 lines
384 B
JavaScript
document.addEventListener('DOMContentLoaded', function () {
|
|
fetch('/includes/navbar.html')
|
|
.then(function (res) { return res.text(); })
|
|
.then(function (html) {
|
|
var wrapper = document.createElement('div');
|
|
wrapper.innerHTML = html.trim();
|
|
document.body.insertBefore(wrapper.firstChild, document.body.firstChild);
|
|
});
|
|
});
|