$.post('url',{text: textValue}).done(function(data){
alert(data);
});
$.post('url',{text: textValue}).done(function(data){
$("#Result").text(data);
});
function updateSomething(data) {
setTimeout(function() {
$.ajax({
type: 'POST',
url: "http://yoururl.ru/page.html",
dataType: 'html',
data: data,
success: function(result) {
$('#Result').html(result);
}
});
}, 100);
}