So I was looking at the jQuery source and I found this:
delegate: function( selector, types, data, fn ) {
return this.live( types, data, fn, selector );
},
So .delegate()
function is pretty much just the .live()
function. The only difference is the order of the arguments! Why would the jQuery people do such a thing?