mirror of
https://github.com/Stone-Red-Code/Stone-Red-Code.github.io.git
synced 2026-09-04 00:56:22 +02:00
7 lines
176 B
JavaScript
7 lines
176 B
JavaScript
$.get("footer.html", function (data) {
|
|
$("#footer-placeholder").replaceWith(data);
|
|
});
|
|
|
|
$.get("nav.html", function (data) {
|
|
$("#nav-placeholder").replaceWith(data);
|
|
}); |