Answered
I have a web application that I'm building with Backbone.js.
When changing an attribute on one of my models, how can I stop the change events from being fired?
For example, here's one line of code I want to do this for:
users.first().set({"online": true});
Add `{silent: true}' to your function call. It will stop the change event from being triggered.
users.first().set({"online": true}, {silent: true});