Skip to content

Instantly share code, notes, and snippets.

@gabrielflorit
Forked from anonymous/water.js
Created July 20, 2012 22:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gabrielflorit/3153659 to your computer and use it in GitHub Desktop.
Save gabrielflorit/3153659 to your computer and use it in GitHub Desktop.
created by livecoding - http://livecoding.gabrielflor.it
var url = 'http://examples.oreilly.com/0636920025429/mikedewar-getting_started_with_d3-bdfc34e/visualisations/data/service_status.json';
// only retrieve above script once
$.ajaxSetup({
cache: true
});
var postData = {
'url': url
};
$.post('/loadremoteurl', postData, function(data) {
debugger;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment