Created
July 20, 2012 22:22
-
-
Save anonymous/3153652 to your computer and use it in GitHub Desktop.
created by livecoding - http://livecoding.gabrielflor.it
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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