function Load() {
$.post("ajax/tema.php",
{
act: "newtema"
},
function (result) {
alert(result);
eval(result);
}
);
}
$(function(){
Load();
setInterval(Load, 30000);
});
но лучше так конечно
function Load() {
$.post("ajax/tema.php",
{
act: "newtema"
},
function (result) {
alert(result);
eval(result);
}
);
setTimeout(arguments.callee, 30000)
}
$(Load);