ok I have made div's:
This is my first attempt playing around with dhtml and div's...I need to make the division testDivImg scroll down the colum to the bottom of the table and stop, there will be more than one colum on the table and I need something that I can call (as a function..or whatever, as long as I can call it up) to make the image in whatever colum I need
scroll to the bottom of the table. Can someone just point me in the right direction and I'll try it from there, Thanks for any help...(I know this will only work in IE, I'll worry about making it cross browser once I get the code done)
Code:
<div align="center" id="testDiv1" style="position: relative; background-color: #FFFFFF; height: 100%; width: 100%">
<table align="center" border="0" cellspacing="0" cellpadding="0" width="100%" height="100%">
<tr>
<td>
<div align="center" id="testDivImg">
<img border="0" src="testPic.gif" width="24" height="69">
</div>
<br>
<br>
<br>
<br>
<br>
<br>
</td>
</tr>
</table>
</div>
This is my first attempt playing around with dhtml and div's...I need to make the division testDivImg scroll down the colum to the bottom of the table and stop, there will be more than one colum on the table and I need something that I can call (as a function..or whatever, as long as I can call it up) to make the image in whatever colum I need
scroll to the bottom of the table. Can someone just point me in the right direction and I'll try it from there, Thanks for any help...(I know this will only work in IE, I'll worry about making it cross browser once I get the code done)