I have a jqXHR object which I get from a backbone collection:
var xhr = this.collection.fetch({
error: function() { alert("oh noes!"); }
});
Sometimes I then need to call xhr.abort(). But this is also triggering the error callback.
How can I call xhr.abort() without triggering an error?