Blok-ID doorgeven aan search_ajax_way
functie:
$("#search_query").keyup(function(event){
event.preventDefault();
search_ajax_way(this.id);
});
Geef vervolgens blok-ID door in gegevensparameter in ajax-verzoek:
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);
})
}
BlockId is nu beschikbaar in je php-script als $_POST['blockId']
.