I\'m wondering how to refresh/reload a page (or even specific div) once(!) using jQuery?
Ideally in a way right after the DOM structure is available (c
DOM structure
Use this instead
function timedRefresh(timeoutPeriod) { setTimeout("location.reload(true);",timeoutPeriod); } image