What is the difference between $.proxy() and bind()?
proxy came first and you should likely favor bind as it is a standard. The way they are called varies slightly (due to being attached to Function.prototype vs just being a function) but their behavior is the same. There is a pretty good post here: jQuery.proxy() usage, that ends with that advice.