Ok so let\'s say that I have my object
myobj = {\"A\":[\"Abe\"], \"B\":[\"Bob\"]}
and I want to get the first element out of it. As in I want i
I Hope that will help
$.each(myobj, function(index, value) { console.log(myobj[index]); )};