Who knows the answer?

I have an input type="image" which sort of acts like the little cell notes in Excel. If someone enters a number into the text box this input-image is paired with, I setup an event handler for the input-image and then when the user clicks the image they get a little popup to add some notes to the data.

The problem I'm having, is that when a user enters a zero into the text box, I need to disable the input-image's event handler. I tried to do something like $('#myimage').click(function { return false; }); but that did not work.

link|improve this question

feedback

10 Answers

up vote 296 down vote accepted

[2011 - jQuery 1.7 <]

With jQuery 1.7 onward the event API has been updated, .bind()/.unbind() are still available for backwards compatibility, but the preferred method is using the on()/off() functions. The below would now be,

$('#myimage').click(function() { return false; }); // Adds another click event
$('#myimage').off('click');
$('#myimage').on('click.mynamespace', function() { /* Do stuff */ });
$('#myimage').off('click.mynamespace');

In your example code you are simply adding another click event to the image, not overriding the previous one:

$('#myimage').click(function() { return false; }); // Adds another click event

Both click events will then get fired.

As people have said you can use unbind to remove all click events:

$('#myimage').unbind('click');

If you want to add a single event and then remove it (without removing any others that might have been added) then you can use event namespacing:

$('#myimage').bind('click.mynamespace', function() { /* Do stuff */ });

and to remove just your event:

$('#myimage').unbind('click.mynamespace');
link|improve this answer
Is there a way to test if unbind() is working? I've added it and both events are still firing. – DavidYell Sep 23 '10 at 10:41
4  
Well if both events are still firing then obviously its not working. You'd have to give more info to get a proper answer. Try asking a separate question. – samjudson Oct 7 '10 at 14:02
this bind/unbind syntax is preferred because it allows you to use closure compiler to optimize your jquery scripts. – the0ther Aug 7 '11 at 4:57
+1 for stating the obvious and identifying it as such. – pancake Jan 30 at 15:46
feedback

Look at unbind.

link|improve this answer
feedback

This wasn't available when this question was answered, but you can also use the live() method to enable/disable events.

$('#myimage:not(.disabled)').live('click', myclickevent);

$('#mydisablebutton').click( function () { $('#myimage').addClass('disabled'); });

What will happen with this code is that when you click #mydisablebutton, it will add the class disabled to the #myimage element. This will make it so that the selector no longer matches the element and the event will not be fired until the 'disabled' class is removed making the .live() selector valid again.

This has other benefits by adding styling based on that class as well.

link|improve this answer
2  
Nice way to use live(), never thought about using it this way before ... Aside from coding convenience, is it faster or does it offer any other advantages to using bind/unbind? – chakrit Mar 11 '10 at 16:53
1  
If you are adding/removing elements, then there are definite performance advantages over bind as the binding with live is only done once. jQuery seems to be moving to more live and delegate events rather than binding to specific elements. – MacAnthony Mar 26 '10 at 16:23
To disable live you can use die() – Kamal Deep Singh Dec 7 '11 at 10:37
"As of jQuery 1.7, the .live() method is deprecated. Use .on() to attach event handlers. Users of older versions of jQuery should use .delegate() in preference to .live()." api.jquery.com/live – Lucas -luky- N. Dec 29 '11 at 18:49
feedback

maybe the unbind method will work for you

$("#myimage").unbind("click");
link|improve this answer
feedback

This can be done by using the unbind function.

$('#myimage').unbind('click');

You can add multiple event handlers to the same object and event in jquery. This means adding a new one doesn't replace the old ones.

There are several strategies for changing event handlers, such as event namespaces. There are some pages about this in the online docs.

Look at this question (that's how I learned of unbind). There is some useful description of these strategies in the answers.

http://stackoverflow.com/questions/48931/how-to-read-bound-hover-callback-functions-in-jquery

link|improve this answer
feedback

check out the documentation for unbind which you can see here http://docs.jquery.com/Events/unbind

link|improve this answer
feedback

Thanks for the information. very helpful i used it for locking page interaction while in edit mode by another user. I used it in conjunction with ajaxComplete. Not necesarily the same behavior but somewhat similar.

function userPageLock(){
    $("body").bind("ajaxComplete.lockpage", function(){
        $("body").unbind("ajaxComplete.lockpage");
        executePageLock();      
    });
};  

function executePageLock(){
    //do something
}
link|improve this answer
feedback

If you want to respond to an event just one time, the following syntax should be really helpful:

 $('.myLink').bind('click', function() {
   //do some things

   $(this).unbind('click', arguments.callee); //unbind *just this handler*
 });

Using arguments.callee, we can ensure that the one specific anonymous-function handler is removed, and thus, have a single time handler for a given event. Hope this helps others.

link|improve this answer
1  
jQuery already has jQuery#one('click', fn) for this. – Andy E Nov 15 '11 at 9:09
feedback

Btw, you can play with FireQuery, a Firefox/Firebug plugin which could help you to debug bindings. You can see your events visually attached to DOM elements : https://addons.mozilla.org/fr/firefox/addon/firequery/

link|improve this answer
feedback

I had to set the event to null using the prop and the attr. I couldn't do it with one or the other. I also could not get .unbind to work. I am working on a TD element.

.prop("onclick", null).attr("onclick", null)
link|improve this answer
feedback

protected by Will Oct 29 '10 at 10:23

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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