Skip to content

Instantly share code, notes, and snippets.

@yradtsevich
Created June 4, 2013 18:36
Show Gist options
  • Save yradtsevich/5708333 to your computer and use it in GitHub Desktop.
Save yradtsevich/5708333 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8 />
<title>JS Bin</title>
</head>
<script>
tryXhr = function() {
var xhr = new XMLHttpRequest();
xhr.myProp = 1;
xhr.open('GET', 'http://htmlpreview.github.io', true);
xhr.send();
xhr.onload = function(xhrEvent) {
var xhr1 = xhrEvent.target;
alert(xhr1.myProp);
};
};
</script>
<body>
<input type='button' value='Try XHR' onclick='tryXhr()'>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment