Skip to content

Instantly share code, notes, and snippets.

@danielbreves
Last active August 29, 2015 14:02
Show Gist options
  • Save danielbreves/67fc01ef61f759fec0e0 to your computer and use it in GitHub Desktop.
Save danielbreves/67fc01ef61f759fec0e0 to your computer and use it in GitHub Desktop.
console.log('start');
var xhr = new XMLHttpRequest();
xhr.open('GET', 'https://rawgit.com/adammw/78e154c8dfd9050eb222/raw/gistfile1.js', true);
xhr.addEventListener('load', function(){ console.log('sync load');});
xhr.send();
console.log('end');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment