How do I adapt the following javascript code:
********
<img src="officecam0000.jpg" name="myImageName">
<script language="JavaScript">
function reloadImage() {
var now = new Date();
if (document.images) {
document.images.myImageName.src = 'officecam0000.jpg?' + now.getTime();
}
setTimeout('reloadImage()',10000);
}
setTimeout('reloadImage()',10000);
</script>
***********
so that it positions and sizes the image the same as this html code:
********
<p align="left"><img border="0" src="officecam0000.jpg" width="150" height="130"><br>
OfficeCam(10sec.update)</p>
*********
You can see where I am using this code at:
I am new to javascript, so you may have to spell it out for me.
Thanks for your help.
John
********
<img src="officecam0000.jpg" name="myImageName">
<script language="JavaScript">
function reloadImage() {
var now = new Date();
if (document.images) {
document.images.myImageName.src = 'officecam0000.jpg?' + now.getTime();
}
setTimeout('reloadImage()',10000);
}
setTimeout('reloadImage()',10000);
</script>
***********
so that it positions and sizes the image the same as this html code:
********
<p align="left"><img border="0" src="officecam0000.jpg" width="150" height="130"><br>
OfficeCam(10sec.update)</p>
*********
You can see where I am using this code at:
I am new to javascript, so you may have to spell it out for me.
Thanks for your help.
John