|
Hello
I have a function which shows a sequence of images in a loop, the problem i have is that i have no control over where the images are shown on the page, i would like to show the images in a particular cell of a HTML table. Is there a way of doing this?
The function is below, it currently runs from onload.
Thanks
Solaar
function startSlideShow(){
setTimeout("pic1()",1000);
}
function pic1(){
document.images.slidepix.src="costume.gif ";
setTimeout("pic2()",1000);
}
function pic2(){
document.images.slidepix.src="dressing.gif ";
setTimeout("pic3()",1000);
}
function pic3(){
document.images.slidepix.src="sculpting.gif ";
setTimeout("pic1()",1000);
}
|