I'm trying to retrieve a JSON object called "encuesta" from an AJAX request and store it in the global variable "jacu." Here's my code:
window.onload = function() {
tabla = document.getElementById("pregunta");
jencu = ajax("GET", "datos/encuesta.json", true, "lee")
}
function ajax(metodo, url, bolean, que) {
var xhr;
if (window.XMLHttpRequest) {
xhr = new XMLHttpRequest();
} else {
xhr = new ActiveXObject("Microsoft.XMLHTTP");
}
xhr.onreadystatechange = function() {
if (xhr.readyState == 4 && xhr.status == 200) {
if (que == "lee") {
encuesta = xhr.responseText;
encuesta = JSON.parse(encuesta)
}
}
}
xhr.open(metodo, url, true);
xhr.send();
}