Skip to content

Instantly share code, notes, and snippets.

@kevincianfarini
Created August 4, 2019 23:10
Show Gist options
  • Save kevincianfarini/a70e921ca86bfd4cb8b92d7514cbdfd3 to your computer and use it in GitHub Desktop.
Save kevincianfarini/a70e921ca86bfd4cb8b92d7514cbdfd3 to your computer and use it in GitHub Desktop.
fdsfa
function getData() {
$.get("example.php", function(response) {
var data = response;
$.get("exampletwo.php", function(responsetwo) {
var datatwo = responsetwo;
$.get("examplethree.php", function(responsethree) {
var datathree = responsethree;
...
});
});
});
return data;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment