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/nav.js

4 lines
157 B
JavaScript
Raw Permalink Normal View History

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