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 have this code for ajax a page on search click:

$.ajax({
    url: "ClientsList.asp",
    type: "POST",
    data: "name=" + Name + "&org=" + Org + "&job=" + Job + "&type=" + Type,
    success: function(msg){
        $("#SRP").html(msg);
        $("#Loading").fadeOut("noraml",function(){
            $("#SRP").fadeIn();
        });

    }
});

then in the content loaded I have checkboxs that I need to catch, so I do that with this code

$(".SearchResultSelectBox").live("click", function(event) {
    $(this).is(":checked") ? DoCheckSelect($(this).attr("rel")) : unDoCheckSelect($(this).attr("rel"));
});

The first time i search and get the resulted page from the ajax the checkbox work great. the second time i use the search, every live click i have is doubled. the third time i use the ajax, every live click is tripeld and so on...

I tried "return false" but then it work but the checkbox doesn't get clicked

What can be done?

NEVER MIND! i had a mistake, i had the second set of function inside of the first one so everytime i made the search funtion i made the inside funtion for live click again

share|improve this question
Are you calling live() more than once? Try event.stopPropagation(); in the click() routine if not. – Orbling Apr 2 '11 at 13:57
Well you were calling it more than once then. Easily done. – Orbling Apr 2 '11 at 14:02
If you calling the live() function every time you load content, you are missing the point of the live. you should only register a live event once, and then whenever you refresh the html, it passes through it. – yoavmatchulsky Apr 2 '11 at 14:03
Or are you declaring it in a loop or an event handler itself that may fire more than once? – Liza Daly Apr 2 '11 at 14:03

2 Answers

up vote 0 down vote accepted

may be try to use

unbind('click');

and bind it again for each ajax request

share|improve this answer

Try

event.stopPropagation();

$(".SearchResultSelectBox").live("click", function(event) {
    $(this).is(":checked") ? DoCheckSelect($(this).attr("rel")) : unDoCheckSelect($(this).attr("rel"));
    event.stopPropagation();
});
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.