так попробуй
$(document).ready(function(){
$('#getContent').click(function(){
$('#divContent').html('Получаем контент');
$.ajax({url: "/content.php",
cache: false,
success: function(html){
setTimeout(function(){$("#divContent").html(html);
},800)}
});
return false;
});
});