$.ajax({
url: "getme.php?id=<?=$_GET['id']?>",
cache: false,
success: function(html){
$("#meblock").html(html);
if($(html).find('> div').hasClass('.response')){
$('html, body').animate({
scrollTop: $(".down").offset().top
}, 2000);
}
}
});