I'm trying to make some Drupal 7 content updated by jQuery's load() and it's not being processed by the relevant JS code. The code in question uses bind() and is spread over dozens of Drupal core JS files.
I want to workaround this by using jQuery 1.7.1 and changing
bind: function( types, data, fn ) {
return this.on( types, null, data, fn );
},
to behave as
delegate: function( selector, types, data, fn ) {
return this.on( types, selector, data, fn );
},
The only thing missing is selector as you can see. Can I somehow get it from the standard bind() calls?
$(this)inside an event handler. When a jQuery object is constructed around a DOM node or around a string (to construct new nodes), there is no selector, so.bind()is the only way to bind handlers. – Pointy Jul 11 '12 at 22:54