andrei4ik,
function show(){
$.ajax({
url: "/pochta.php?messages",
cache: false,
success: function(html){$("#messages").html(html);}
});
}
$(document).ready(function(){show();setInterval("show()", 10000);}); andrei4ik,
function show(){
$.ajax({
url: "/pochta.php?messages",
cache: false,
success: function(html){$("#messages").html(html);}
});
}
$(document).ready(function(){show();setInterval("show()", 10000);});