mirror of
https://github.com/Stone-Red-Code/Stone-Red-Code.github.io.git
synced 2026-09-04 09:06:28 +02:00
12 lines
369 B
JavaScript
12 lines
369 B
JavaScript
$.get("header.html", function (data) {
|
|
$("#header-placeholder").replaceWith(data);
|
|
document.getElementById('header-title').innerHTML = document.querySelector('title').textContent;
|
|
});
|
|
|
|
$.get("nav.html", function (data) {
|
|
$("#nav-placeholder").replaceWith(data);
|
|
});
|
|
|
|
$.get("footer.html", function (data) {
|
|
$("#footer-placeholder").replaceWith(data);
|
|
}); |