Skip to content

Instantly share code, notes, and snippets.

@markcode
Created November 28, 2013 00:32
Show Gist options
  • Save markcode/7685493 to your computer and use it in GitHub Desktop.
Save markcode/7685493 to your computer and use it in GitHub Desktop.
html, get http header values
// this works
function loadXMLDoc(url) {
if (window.XMLHttpRequest) { // code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp=new XMLHttpRequest();
} else { // code for IE6, IE5
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange = function() {
if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
console.log('X-report-address: ' + xmlhttp.getResponseHeader('X-report-address'));
}
}
xmlhttp.open("GET",url,true);
xmlhttp.send();
}
loadXMLDoc('index.html');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment