Herladen.js
Gesponsorde koppelingen
PHP script bestanden
var timeout;
$(document).ready( function(){
$(' #auto').load('load.php');
refresh();
startReload();
});
function refresh()
{
timeout = setTimeout( function() {
$(' #auto').load('load.php');
refresh();
}, 5000); // 5000 is gelijk aan 5 seconden
}
function stopReload() {
clearTimeout(timeout);
}
function startReload() {
refresh();
}