- From: Olivier Thereaux <ot@hutz.w3.org>
- Date: Fri, 23 Apr 2004 01:45:05 +0000
- To: www-validator-cvs@w3.org
Update of /sources/public/validator/htdocs
In directory hutz:/tmp/cvs-serv27582
Added Files:
Tag: validator-0_6_0-branch
loadexplanation.js
Log Message:
using external script for Jim Ley's bit of JS
--- NEW FILE: loadexplanation.js ---
d=document
w=window
msgs=new Array()
if (w && d && d.getElementsByTagName){
w.onload=doubleUp
}
function doubleUp() {
glist=d.getElementsByTagName("DIV")
upto(10)
}
function upto(n) {
if (n<glist.length) {
for (i=n;i<glist.length && i<n+10;i++) {
j=glist[i]
cls=j.className
if (cls) cls=cls.split(' ')
if (cls.length>1) {
if (cls[0]=='ve') msgs[cls[1]]=j.innerHTML
if (cls[0]=='hidden' && msgs[cls[1]]) {
j.className="ve "+cls[1]
j.innerHTML=msgs[cls[1]]
}
}
}
if (w && w.setTimeout) setTimeout('upto('+i+')',500)
}
}
Received on Thursday, 22 April 2004 21:45:05 UTC