SyntaxFix
Write A Post
Hire A Developer
Questions
If you look in the source code for $.fn.bind you will find that it's just an rewrite function for on:
$.fn.bind
on
function (types, data, fn) { return this.on(types, null, data, fn); }
http://james.padolsey.com/jquery/#v=1.7.2&fn=$.fn.bind