In my backbone.js app, there is a Trips collection that holds Trip models, which is working with LocalStorage. I am able to call
Trips collection
Trip models
LocalStorage
If you are using backbone 1.0, you'll need to pass reset:true in the fetch() call in order to bind with the reset event:
trips.fetch({reset: true});