Dovrai annullare le chiamate ajax, il modo più semplice è fare un doOnce
var doOnce = 1;
$(document).ready(function(){
$(".box_content").live('click',function(e){
var element = $(this);
var id = element.attr("id");
var mem_email = $("#to_mem").val();
var mem_firstName = $("#to_memfirstName").val();
var happening_id = $("#happening_id<?php echo $id; ?>").val();
var info = "id=" + id + '&mem_email=' + mem_email + '&mem_firstName=' + mem_firstName + '&happening_id=' + happening_id;
if(doOnce){
doOnce--;
$.ajax({
type: "POST",
url: "/happening_getMem_linkUP.php",
data: info,
cache: false,
success: function(html){
$("#now_from_linkup<?php echo $id; ?>").html(mem_firstName);
doOnce++;
}
});
}
return false;
});
});
doOnce
inizia vero, quindi verrà chiamato ajax e doOnce
verrà trasformato in false disabilitando la chiamata ajax, quindi quando ajax restituisce successo il doOnce
verrà reimpostato su true consentendo l'esecuzione di nuovo.
Puoi anche utilizzare il plug-in Throttle &Debounce di Ben Alman