profilpage/js/glob.js

8 lines
254 B
JavaScript
Raw Normal View History

2021-06-25 17:41:11 +02:00
//Footer
$.get("/templates/footer.html", function (data) {
document.getElementById("bottom").innerHTML=data;
});
$.get("/templates/nav.html",function(data){
document.getElementById("navbar_wr").innerHTML=data;
});