Код:
$(document).ready(function(){
$('#get_content').click(function(){
$.ajax({
url: "Код для вывода листинга",
cache: false,
beforeSend: function() {
$('#content_block').html('Получаем контент');
},
success: function(html){
$("#content_block").html(html);
}
});
return false;
});
});
<div id="content_block"></div>
<a href="#" id="get_content">Загрузить контент</a>