Does anybody know how to unbind set of event handlers, but memorize them in order to bind them again later? Any suggestions?
feedback
|
|
There is a events element in the data of the item. This should get your started, you can read your elements and store the handlers in an array before unbinding. Comment if you need more help. I got this idea from reading the $.fn.clone method so take a look at that as well.
| |||||||||||||||
feedback
|
|
Since jQuery 1.4.2+ changes how event handlers are stored, this seems relevant: The best way I found was to use event namespacing:
In the above example, all foobar events unbound. Notice that if you needed finer grain control, you could namespace each click handler and correlate to your array of handlers:
| |||
|
feedback
|
|
Here is how to achieve that, provides a
| ||||
|
feedback
|
|
There is now a good jQuery plugin called copyEvents, which copies events from one object to another. This could very easily be used to "save" events from one element and bring them back later. Just one more option :) | |||
|
feedback
|
|
In order to unbind an event handler you need to pass the handler function into unbind(). So you already have the handler function, all you have to do is remember it. | |||
|
feedback
|