This works fine, alert the date of the 3ΒΊ item from "eventos"
var eventos;
$.getJSON('/Pelotero/Modulos/Includes/Eventos/Ajax_Leer_Datos.php', function(data)
{
eventos = data;
alert(eventos[3].Fecha);
});
But I need this to access "eventos" out of getJSON function:
var eventos;
$.getJSON('/Pelotero/Modulos/Includes/Eventos/Ajax_Leer_Datos.php', function(data)
{
eventos = data;
});
alert(eventos[3].Fecha);
Chorme says " Uncaught TypeError: Cannot read property '3' of undefined "