I have the following Model:
window.MyModel = Backbone.Model.extend({ initialize: function(props){ this.url = props.url; } parse: funct
You can set url as option in fetch function, like this:
var mod = new MyModel(); mod.fetch({ url: '/some/other/url', data: {} });