T
Treetop
I would like a script to display a list of web links that will be ever
increasing. I don't want to have to do a new document.write command for
each new variable as it comes up. The larger var numbers will be at the
top, so I can add to them as I need to.
var 2l = "hp.com"
var 2t = "HP"
var 1l = " www .ibm.com"
var 1t = "IBM"
..........(and so on)
document.write('<a href=http://');
document.write(1l);
document.write('>');
document.write(1t);
document.write('</a><br>');
repeat some how
I am doing this as I have a palm that can sync js files, so I do updates to
web files when I am away from a computer. I have done this for over a year
now and it works well. I have several cases similar to this that I have to
have to use if/then statements to not display values if they are not there.
I hope that I made sense.
increasing. I don't want to have to do a new document.write command for
each new variable as it comes up. The larger var numbers will be at the
top, so I can add to them as I need to.
var 2l = "hp.com"
var 2t = "HP"
var 1l = " www .ibm.com"
var 1t = "IBM"
..........(and so on)
document.write('<a href=http://');
document.write(1l);
document.write('>');
document.write(1t);
document.write('</a><br>');
repeat some how
I am doing this as I have a palm that can sync js files, so I do updates to
web files when I am away from a computer. I have done this for over a year
now and it works well. I have several cases similar to this that I have to
have to use if/then statements to not display values if they are not there.
I hope that I made sense.