I'm trying to display multiple checklists from individual cards in Trello. I can get access to the checklist as multiple, nested objects but I don't know how to traverse deeper to pull out the actual text and make it list items.
Trello.get("cards/" + cardID + "/checklists", function(checklists) {
console.log(checklists);
});
data: http://jsbin.com/OzEdUkU/2/edit
How do I traverse all the way down to the name of the checkItem array objects?