19 lines
431 B
JavaScript
19 lines
431 B
JavaScript
$(function () {
|
|
$("#header").load("./components/header.html");
|
|
});
|
|
$(function () {
|
|
$("#footer").load("./components/footer.html");
|
|
});
|
|
$(function () {
|
|
$("#legal").load("./components/legal-menu.html");
|
|
});
|
|
$(function () {
|
|
$("#message").load("./components/message.html");
|
|
});
|
|
$(function () {
|
|
$("#is-status").load("./components/is-status.html");
|
|
});
|
|
$(function () {
|
|
$("#nl-status").load("./components/nl-status.html");
|
|
});
|