Dave,

Yes, you can change an image without refreshing the whole page. In
javascript you can change the image src. I think it normal to preload the
images into an array for speed. Something like:

picArray = new Array();

picArray[0] = new Image();
picArray[0].src = "images/image1.GIF";
picArray[1] = new Image;
picArray[1].src = "images/image2.GIF";

function changePic()
{
    document.images[img_id].src = picArray[1].src;
}

You get the idea, obviously you can expand on this, but that's the basis.

HTH
Adam



____ • The WDVL Discussion List from WDVL.COM • ____
To Join wdvltalk, Send An Email To: mailto:[EMAIL PROTECTED] 
       Send Your Posts To: [EMAIL PROTECTED]
To change subscription settings to the wdvltalk digest version:
    http://wdvl.internet.com/WDVL/Forum/#sub

________________  http://www.wdvl.com  _______________________

You are currently subscribed to wdvltalk as: [EMAIL PROTECTED]
To unsubscribe send a blank email to [EMAIL PROTECTED]

Reply via email to