Hi all,
Does anybody know how to unbind set of event handlers, but memorize them in order to bind them again later? Any suggestions?
|
3
|
Hi all, Does anybody know how to unbind set of event handlers, but memorize them in order to bind them again later? Any suggestions?
|
||||
|
|
|
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.
|
|||
|
|
Here is how to achieve that, provides a
|
|||
|
|
|
|
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 :) |
||
|
|
|
|
Unfortunately, the examples don't show what I need. I want to unbind events in the following manner: unbind('click'). And I want to get set of events, that has been unbound. Maybe extend use the technique behind that function... |
||
|
|
|
|
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. |
||
|
|
|
|
http://docs.jquery.com/Events/unbind#typefn The example should answer your question. |
||
|
|