Skip to content

Instantly share code, notes, and snippets.

@wilmtang
Last active September 6, 2015 09:03
Show Gist options
  • Select an option

  • Save wilmtang/1642a5985cdb8262fab2 to your computer and use it in GitHub Desktop.

Select an option

Save wilmtang/1642a5985cdb8262fab2 to your computer and use it in GitHub Desktop.
Detect IE7 for ajax
<!DOCTYPE html>
<html>
<head>
<script>
function loadXMLDoc() {
var xmlhttp;
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) {
document.getElementById("myDiv").innerHTML = xmlhttp.responseText;
}
}
xmlhttp.open("GET", "demo_get.asp", true);
xmlhttp.send();
}
</script>
</head>
<body>
<h2>AJAX</h2>
<button type="button" onclick="loadXMLDoc()">Request data</button>
<div id="myDiv"></div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment