blob: 725ce8e6b02df04691447e1b9d26bcdff09e920c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// this function is included locally, but you can also include separately via a header definition
function request(url, callback) {
var xhr = new XMLHttpRequest();
xhr.onreadystatechange = (function(req) {
return function() {
if(req.readyState === 4) {
callback(req);
}
}
})(xhr);
xhr.open('GET', url, true);
xhr.send('');
}
|