I have a script that has
document.writeln("<TD ALIGN='CENTER'><a href='l1rem" + i + ".htm'><img src='Images/button2.jpg' border='0'>Question" + i + "</a></TD>"
This will give me a string of links of variable i. And it is displayed vertically.
Question1
Question2
Question3
.
.
Problem is, this script is in a fixed size window with no resize nor scrolling function. How then can I display say there are 50 links? Is there away to auto adjust and arrange to fit in the window? My window size is 794 x 565. Thanks.
Soon
document.writeln("<TD ALIGN='CENTER'><a href='l1rem" + i + ".htm'><img src='Images/button2.jpg' border='0'>Question" + i + "</a></TD>"
This will give me a string of links of variable i. And it is displayed vertically.
Question1
Question2
Question3
.
.
Problem is, this script is in a fixed size window with no resize nor scrolling function. How then can I display say there are 50 links? Is there away to auto adjust and arrange to fit in the window? My window size is 794 x 565. Thanks.
Soon