I'm not sure what you mean by "label" but it sounds like you want to use a combination of DHTML and JavaScript to change layer contents. I can help with this if you want.
The easiest way to do what you want is to use a text field or textarea and change it's contents. That's very simple to do, and very cross-browser compatible. Tracy Dryden
tracy@bydisn.com
function loop() {
var i=0
for (i=0; i<1000; i++) {
number.innerHTML = i;
}
}
then on your page:
<span id="number" style="position:relative">
but a loop is gonna go much to fast to produce any readable output so try this:
Code:
var i=0
function loop() {
number.innerHTML = i;
i++;
setTimeout('loop()', 500);
}
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.