Konu
Belli bir div Tagının 30 Saniyede Bir Yenilenmesi ?
08-12-2019, 16:13:37
#3
MAJER
function update() {
$.get("index.php", function(data) {
$("#some_div").html(data);
});
window.setTimeout("update();", 30000);
}