$.ajax({ url: 'test.php', dataType: 'json', success: function(myArr) { alert(myArr[0]); // One alert(myArr[1]); // Two } });
echo json_encode(array('One', 'Two'));