vote up 3 vote down star
2

who knows the answer?

i have a input type="image" which sort of acts like the little cell notes in excel. if someone enters a number into the textbox 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 textbox, 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.

flag

7 Answers

vote up 6 vote down check

Look at unbind.

link|flag
vote up 1 vote down

maybe the unbind method will work for you

$("#myimage").unbind("click");
link|flag
vote up 1 vote down

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

link|flag
vote up 2 vote down

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|flag
vote up 14 vote down

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|flag
vote up 0 vote down

@samjudson: As far as i can tell from the jquery-source, the syntax is "event.namespace", not "namespace.event". Anti-intuitive, but John normally has a reason...

link|flag
vote up 0 vote down

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

Your Answer

Get an OpenID
or

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