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

live()more than once? Tryevent.stopPropagation();in theclick()routine if not. – Orbling Apr 2 '11 at 13:57live()function every time you load content, you are missing the point of thelive. 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