Finally I got around to re-code http://tv.autopsy.se again. Enjoy!
Posts Tagged ‘tv.autopsy.se’
tv.autopsy.se sucks!
Tuesday, October 6th, 2009javascript and timers sucks!
Thursday, October 2nd, 2008Have been trying to get my head around timers in javascript. And I guess i know how it works now. My approach:
<script>
var timer;
function whatever() {
if ( timer )
clearTimeout(timer);
alert("you just wasted 15 seconds of your life..");
timer = startTimeout('whatever()', 15000);
}
</script>
and in the html:
<body onLoad="timer = startTimeout('whatever()', 15000);"> yada yada..
this will generate an annoying popup (if I made the example correct..) every 15 seconds..
Why I need this? Well, on tv.autopsy.se I want to update the search cloud continuously without having to do some reloads. And I also have a timer that waits 4s to insert data into the database for the search cloud. Neat, huh?