jQuery.ajax({
url: 'some.php',
data: 'action=blatest',
type: 'post',
dataType: 'html',
success: function( data ) {
alert( data ); // пришедшие данные
},
complete: function( xhr ) {
alert( 'запрос успешно выполнен' );
},
error: function( xhr, status ) {
alert( 'произошла ошибка при выполнении запроса' );
}
});