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?
I have an object that saves like this taskTime{date:2012-11-19,freq:taskOnce,time:05:22} Is there a way to
Share
result.get(“taskTime”).freq
That’s just a guess, though. There’s not enough info. Chrome’s developer tools are your friends.