profilpage/js/glob.js
2021-06-25 17:41:11 +02:00

8 lines
254 B
JavaScript

//Footer
$.get("/templates/footer.html", function (data) {
document.getElementById("bottom").innerHTML=data;
});
$.get("/templates/nav.html",function(data){
document.getElementById("navbar_wr").innerHTML=data;
});