I’m not sure if the title means what it does in my head ,but basically I have a loaded page, upon an action I am calling a function which I want to write thumbnail images, to a specific td.
This piece of my code:
Thats the simplified version of my problem. Thanks in advance for your thoughts. Drew
"Mistakes are the portals of discovery"
James Joyce
This piece of my code:
Code:
<head>
<style type="text/css">
#row {
position:center;
height:125px;
width:630px;
overflow:auto;
white-space:nowrap;
}
</style>
<script language="Javascript">
function dow1(s) {
i=1;
b=1;
while(i<=50){
document.thumbstrip.write("<a href='#' OnMouseOver='newMap("+b+")'><IMG SRC='"+b+"t.JPG'></img></a>");
i++;
b++;
}
document.write("</div>");
}
function newMap(y) {
document.de.src= y+".jpg";
}
</script>
</head>
<body>
<table>
<tr>
<img name=de src="Logo.jpg" align="center" vspace=10>
</tr>
<tr>
<div id="row">
<td name="thumbstrip">
</td>
</div>
</tr>
</table>
<input type="button" onClick="dow1()" value="Click Here"></input>
</body>
Thats the simplified version of my problem. Thanks in advance for your thoughts. Drew
"Mistakes are the portals of discovery"
James Joyce