Your parameters for .load() are incorrect. The third parameter should be the callback function.
function load_data(search){
$("#leftContent").load(
"includes/handlers/search-handler.php",
{search:search},
function(response) {
console.log(response);
}
);
}