Here is my code getting jsonp request .
$.ajax({
type: "GET",
url: pbxApi+"/confbridge_participants/conference_participants.json?cid="+circle,
dataType: "jsonp",
jsonpCallback: 'callback',
contentType: "application/javascript",
success: function(data) {
console.log(data);
}
});
and here is the request
it outputs all the data in the array.
I want to output specific value only
like value of the uid.
i want output uid for each object returned. how will i do it?

jQuery.each(data, function(index, item) { console.log(item.uid); });