Forgive my ignorance, but I'm attempting to showcase the value of content by executing console.log(teams);
. Upon inspecting Firebug on Mozilla, this is what I discovered:
[Object { id= "50", content= "Team 1 test" , date="Tue Mar 26 2013 12:00:00"}]
However, when I try alert(teams.content);
or alert(teams[content]);
, it simply returns undefined. What am I missing here?