/ Published in: jQuery
URL: http://www.chlab.ch
Here's a snippet for copying (all) the eventhandlers of one element to another with jQuery and effectively cloning the behavior of one element.
Keep in mind that if it's possible, you should just register the same handlers you actually need, instead of just blindly copying all of them. But in some cases, e.g. when using a plugin that you do not wish to modify, this can come in handy.
Expand |
Embed | Plain Text
// iterate event types of original $.each($('#original').data('events'), function() { // iterate registered handler of original $.each(this, function() { $('#target').bind(this.type, this.handler); }); });
You need to login to post a comment.
