Skip to content

Instantly share code, notes, and snippets.

@keitaj
Created April 12, 2015 05:19
Show Gist options
  • Save keitaj/bb4f5278878e48f1dc35 to your computer and use it in GitHub Desktop.
Save keitaj/bb4f5278878e48f1dc35 to your computer and use it in GitHub Desktop.
apiで値取得
var json = (function () {
var json = null;
$.ajax({
'async': false,
'global': false,
'url': 'http://localhost:8888/indkrydsning/app/house/stats_json/',
'dataType': "json",
'success': function (data) {
json = data;
}
});
return json;
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment