Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm having a problem. Basically, when a user clicks an 'Edit' link on a page, the following Jquery code runs:

$("#saveBtn").click(function () {
    saveQuestion(id);
});

By doing this, the onClick event of the save button calls the saveQuestion() method and passes on the ID of the question for which the 'Edit' link was clicked.

But if in the same session the user clicks edit on 2 questions, then instead of overwriting the previous click event handler, it instead causes 2 event handlers to run, one which might call saveQuestion(1) and the other might call saveQuestion(2). By doing this 1 question overwrites the other.

Is there a way to remove all previous click events that have been assigned to a button?

share|improve this question

4 Answers

up vote 59 down vote accepted

you would use the unbind() to remove an event like so:

$("#saveBtn").unbind("click");

but this will remove all click events bind to this control, so if the SaveQuestion is the only one then this will do it, but if not then

$('#saveBtn').unbind("click").click(function(){saveQuestion(id)});
share|improve this answer
11  
Since jQuery 1.7, you should use on and off instead of bind and unbind – LockTar Jul 27 '12 at 15:08
@LockTar can you suggest how this should be wrote instead? – John Magnolia Nov 15 '12 at 12:40
@JohnMagnolia See my changes above. – LockTar Nov 16 '12 at 14:14

Is there a way to remove all previous click events that have been assigned to a button?

$('#saveBtn').unbind('click').click(function(){saveQuestion(id)});
share|improve this answer

If you used...

$(function(){
    function myFunc() {
        // ... do something ...
    };
    $('#saveBtn').click(myFunc);
});

... then it will be easier to unbind later.

share|improve this answer
How do you figure? No matter how a element's event are bound, they can always be unbound the same way... $('#saveBtn').unbind('whatever event(s)'); Now, to RE-BIND... yes, your technique may be easier in certain circumstances. – KyleFarris May 5 '09 at 17:44
If you unbind all click events, then it's no different. But if you only wanted to unbind one specific action, I wouldn't want to rewrite that event in two places. And as you said, if I want to rebind it later, that's again easier to do, because I don't have to write the function a third time. – Jarrett Meyer May 6 '09 at 12:53
$('#saveBtn').off('click').click(function(){saveQuestion(id)});
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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