This repository has been archived on 2021-06-21. You can view files and clone it, but cannot push or open issues or pull requests.
public_html/footer.js

4 lines
181 B
JavaScript
Raw Permalink Normal View History

2021-05-07 02:33:28 +00:00
var footer = document.getElementsByTagName("footer")[0];
2021-05-07 03:02:49 +00:00
fetch("/~job/footer.html")
2021-05-07 02:33:28 +00:00
.then(response => response.text())
.then(text => footer.innerHTML = "<div>" + text + "</div>");