Please Help,
I’m writing a bunch of thumbnails to the bottom of a page using JavaScript. There can be as many as 100 thumbs and I do not want to <br> them onto separate lines. Is there a way to make a <tr> horizontally scrollable (aka panning)?
Here is some code:
There more tables and things around this, but that is the jist of my problem. Thank you, for your replys.
"Mistakes are the portals of discovery"
James Joyce
I’m writing a bunch of thumbnails to the bottom of a page using JavaScript. There can be as many as 100 thumbs and I do not want to <br> them onto separate lines. Is there a way to make a <tr> horizontally scrollable (aka panning)?
Here is some code:
Code:
<head>
<script language="JavaScript">
function newMap(y) {
document.de.src= y+".jpg";
}
</script>
</head>
<body>
<img name=de src="1.jpg" align=center vspace=10>
<table border=0 >
<tr>
<script type="text/javascript">
i=1;
b=1;
while(i<=50){
document.write("<td rowspan=2><a href='#' OnMouseOver='newMap("+b+")'><IMG SRC='"+b+"t.JPG'></img></a></td>");
i++;
b++;
}
</script>
</tr>
</table>
</body>
There more tables and things around this, but that is the jist of my problem. Thank you, for your replys.
"Mistakes are the portals of discovery"
James Joyce