How do I access the name of an item in an Object Literal using jQuery?
For example how would I read \"title\", \"link\", \"media\", ect... in this
{
You can access without each loop if you wanted.
var obj = JSON.parse(data); var title = obj[0].title;