Skip to content

Instantly share code, notes, and snippets.

@fasiha
Created September 9, 2014 18:44
Show Gist options
  • Save fasiha/4497c5e99b9a1699f4eb to your computer and use it in GitHub Desktop.
Save fasiha/4497c5e99b9a1699f4eb to your computer and use it in GitHub Desktop.
D3 function to just grab something from the web and into the workspace via XHR
function getOnline(url) {
d3.xhr(url, 'text/plain',
function(err, req) { _response = req.responseText; });
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment