Ciao a tutti,
Ricevo un array multidimensionale come segue:

Grazie per l'aiuto
Ricevo un array multidimensionale come segue:
Codice:
function GetDataArray(form_tag, xURL)
{
var xmlhttp=false;
if (!xmlhttp && typeof XMLHttpRequest!='undefined')
{
try { xmlhttp = new XMLHttpRequest(); }
catch (e) { xmlhttp = false; }
}
if (!xmlhttp && window.createRequest)
{
try { xmlhttp = window.createRequest(); }
catch (e) { xmlhttp = false; }
}
xmlhttp.onreadystatechange=function()
{
if (xmlhttp.readyState===4 && xmlhttp.status===200)
{
data = JSON.parse(xmlhttp.responseText);
SetValuesTesti(data);
}
}
xmlhttp.open("GET", xURL, true);
xmlhttp.setRequestHeader("Content-type","application/x-www-form-urlencoded");
xmlhttp.send(null);
return
}
function SetValuesTesti(data)
{
a questo punto non riesco ad accedere ai dati anche dopo numerevoli tentativi
}

Grazie per l'aiuto