I'm a newb so go easy:
I can't figure out why this $.ajax function won't append my xhr data to the correct place.
// gets the cache data from our php file
function getcaches() {
$.ajax({
method: 'get',
url: "php/findcache.php",
dataType: "json", // return type data is json
success: function(data){ // <-- data is in json format
//parse the json data
$('#caches').append($('<p>' + data[0].name + '</p>'));
},
error: function(data) {
console.log('error');
}
});
return false;
}
That's the relevant javascript. I know the data is being stored properly in the object because i can see it in firebug...
[OU0397] => stdClass Object
(
[code] => OU0397
[name] => A Mighty Oak in the Open
[location] => 28.527633|-81.125167
[type] => Virtual
[status] => Available
)
I just don't understand what I'm doing wrong. Any pointers?

[0]? – Ignacio Vazquez-Abrams Apr 24 '12 at 1:49