document.titleに時計。watchで変数を監視する。
途中でほかのスクリプトがdocument.titleを変えれるようにがんばった。LDRとかでもちゃんと動く。
var title=document.title; var time,now; setInterval( function(){ time=new Date(); now=' '+time.getHours()+':'+time.getMinutes()+':'+time.getSeconds(); document.title=title+now; },1000) document.watch('title',function(id,bef,aft){ if(aft!=title+now) title=aft; return aft; })
それなりに動く。Dateはyyyy-mm-ddThh:mm:ss+hh:mm形式のものが使えないようだ。