Transmettre l'identifiant du bloc à search_ajax_way
fonction :
$("#search_query").keyup(function(event){
event.preventDefault();
search_ajax_way(this.id);
});
Passez ensuite l'identifiant du bloc dans le paramètre data de la requête ajax :
function search_ajax_way(blockId){
$("#search_results").show();
var search_this=$("#search_query").val();
$.post("search.php", {searchit : search_this, 'blockId': blockId}, function(data){
$("#display_results").html(data);
})
}
Maintenant, blockId sera disponible dans votre script php en tant que $_POST['blockId']
.