vote up 5 vote down star
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?

flag

71% accept rate
Do you events have a same handler function? or all different. – bendewey Feb 5 at 17:35
it shouldn't be the matter. Lets pretend they all are different and I don't know what are they – glaz666 Feb 6 at 8:10

6 Answers

vote up 3 vote down check

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.

$(document).ready(function() {
    $('#test').click(function(e) {
        alert('test');
        var events = $('#test').data("events");
        $('#test').unbind('click', events.click[0]);
    });
});

<a id="test">test</a>
link|flag
Super. That can work. I'll check this – glaz666 Feb 6 at 8:11
1  
I was also looking around the solution for this problem, and this answer works greatly. For more generality, you could access events.click via an iterator. – Achimnol Aug 20 at 13:55
vote up 0 vote down

Here is how to achieve that, provides a storeEvents and a restoreEvents methods on a selection. storeEvents takes a snapshot of the events on the moment it is called. restoreEvents restores to the last previous snapshot. Might need to twist it a little for parameterizing the unbinding while restoring, maybe you'd like to keep the bound events after the last snapshot.

(function($){

    function obj_copy(obj){
            var out = {};
        for (i in obj) {
            if (typeof obj[i] == 'object') {
                out[i] = this.copy(obj[i]);
            }
            else
                out[i] = obj[i];
        }
        return out;
    }


    $.fn.extend({

        storeEvents:function(){
            this.each(function(){
                $.data(this,'storedEvents',obj_copy($(this).data('events')));
            });
            return this;
        },

        restoreEvents:function(){
            this.each(function(){
                var events = $.data(this,'storedEvents');
                if (events){
                    $(this).unbind();
                    for (var type in events){
                        for (var handler in events[type]){
                            $.event.add(
                                this, 
                                type, 
                                events[type][handler], 
                                events[type][handler].data);
                        }
                    }
                }
            });
            return this;
        }

    });
})(jQuery);
link|flag
vote up 1 vote down

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 :)

link|flag
vote up 0 vote down

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...

link|flag
vote up 0 vote down

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.

link|flag
vote up 0 vote down

http://docs.jquery.com/Events/unbind#typefn

The example should answer your question.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.