Skip to content

Instantly share code, notes, and snippets.

@matthewjwolff
Created September 11, 2018 02:24
Show Gist options
  • Save matthewjwolff/82193f2f9b3ad65c305386509d5f2449 to your computer and use it in GitHub Desktop.
Save matthewjwolff/82193f2f9b3ad65c305386509d5f2449 to your computer and use it in GitHub Desktop.
Load header.html into element with id=header and footer.html into element with id=footer
var hreq = new XMLHttpRequest()
hreq.open("GET", "header.html", true)
hreq.onReadyStateChange = () => {
if(hreq.readyState==4 && hreq.status==200) {
document.getElementById("header").innerHTML = hreq.responseText
}
}
var freq = new XMLHttpRequest()
freq.open("GET", "footer.html", true)
freq.onReadyStateChange = () => {
if(freq.readyState==4 && freq.status==200) {
document.getElementById("footer").innerHTML = freq.responseText
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment