Reputation: 13
I have an object that saves like this taskTime{"date":"2012-11-19","freq":"taskOnce","time":"05:22"} Is there a way to access these inner objects? I have tried this result.attributes.taskTime.freq With no luck any ideas?
Upvotes: 1
Views: 172
Reputation: 1842
result.get("taskTime").freq
That's just a guess, though. There's not enough info. Chrome's developer tools are your friends.
Upvotes: 0