I have a problem. I need access to the object within the array on jQuery.
My json:
{"employ": [
{
"id": 46846,
"name": "some name",
"schedule": "main",
"hours": {
"11.09.2012": 5,
"12.09.2012": 8
}
}
,
{
"id": 3543,
"name": "another name",
"schedule": "main",
"hours": {
"11.09.2012": 9,
"12.09.2012": 7
}
}
]}
And my jquery:
$(document).ready(function(){
$("#click").click(function(){
$.getJSON('employ.json', {}, function(json){
$("#userid").append(json.employ[0].hours.????);
});
})
});
What code I need in the place with "????" to access element with name "11.09.2012" ?