I've an element <div id="search_result"></div>, and then I used $.ajax to retrieve some data (search result).
$.ajax({
url: "url to server",
dataType: "json",
data: keyword,
type: "post",
success: function(data){
/* load searchResult.php with data as passing parameter to searchResult.php */
$("#search_result").load("searchResult.php");
}
});
but I wanna load those data of search result to searchResult.php, how it's it,.? and how I access those parameter in searchResult.php,.?
thanks,.