I want to call two functions when myValue changes, and while this works just fine:
this.myValue.on("change", $.proxy(self.functionOne, self));
this.myValue.on("change", $.proxy(self.functionTwo, self));
neither function is called in this case:
this.myValue.on("change", function () {
$.proxy(self.functionOne, self);
$.proxy(self.functionTwo, self);
})
It isn't a huge deal to me if I can't call both functions within one change event like this right now, but I'm pretty new to jQuery and would like to learn why.