Here is a new bookmarklet for you guys.
It's pretty simple. It allows you to automatically refresh a page every 10 seconds.
To stop the auto refresh, simply manually refresh the page (F5).
You can change the frequency of the refreshes by changing the value at the very end (default 10000 [10 secs in ms]) to any other positive amount of milliseconds.Code:javascript:void((function(){f =document.createElement("IFRAME");f.src =window.location.href;f.style.width="100%";f.style.height="100%";while(document.body.childElementCount>0){document.body.removeChild(document.body.firstChild);}document.body.appendChild(f);setInterval(function(){f.contentWindow.location.reload(true);},10000);})())
Note that it will create a frame with the page inside your browser's window. It might look a little weird but it's the only way i found to do this.
You can finally leave the forum idle and you will still have the latest posts if you come later !![]()


LinkBack URL
About LinkBacks




Reply With Quote



