We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1b329a1 commit 133043eCopy full SHA for 133043e
getJson_to_ext_var.js
@@ -1,9 +1,13 @@
1
+/**
2
+ * Get the values from a URL using Ajax and return them to an external variable for further processing.
3
+ */
4
+
5
var json = (function () {
6
var json = null;
7
$.ajax({
8
'async': false,
9
'global': false,
- 'url': mapas[j],
10
+ 'url': $the_url,
11
'dataType': "json",
12
'success': function (data) {
13
json = data;
0 commit comments