This seems like an obvious one, but I\'m somehow missing it...
How do you send options along with a backbone.js collection fetch()?
Or, from a broader point of
You can add an id to the url that can be used by the server to make a selection of the data send. E.g.
var EventsCollection = Backbone.Collection.extend({ model: Events, }); var eventCollection = new EventsCollection(); eventsCollection.url = 'foo?offset=10&limit=20'; eventsCollection.fetch();