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

var header = document.getElementsByTagName("header")[0];
fetch("/~job/nav.html")
.then(response => response.text())
.then(text => header.innerHTML = text);