Skip to content

Instantly share code, notes, and snippets.

@lazd
Last active August 29, 2015 14:27
Show Gist options
  • Select an option

  • Save lazd/94ebd36e6ccc4c4a6fef to your computer and use it in GitHub Desktop.

Select an option

Save lazd/94ebd36e6ccc4c4a6fef to your computer and use it in GitHub Desktop.
(function() {
var req = new XMLHttpRequest();
req.addEventListener('load', function() {
var container = document.createElement('pre');
container.textContent = this.responseText;
document.body.appendChild(container)
});
req.open("get", './Summary.txt', true);
req.send();
}());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment