Skip to content

Instantly share code, notes, and snippets.

@ogavrisevs
Created September 16, 2015 06:30
Show Gist options
  • Save ogavrisevs/13b5ef884eddacd4f435 to your computer and use it in GitHub Desktop.
Save ogavrisevs/13b5ef884eddacd4f435 to your computer and use it in GitHub Desktop.
var client = new XMLHttpRequest();
client.open('GET', '/builddate.txt');
client.onreadystatechange = function() {
alert(client.responseText);
}
client.send();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment