
Signature
Ed Jay (remove 'M' to respond by email)
Ed Jay said:
>VK scribed:
>
[quoted text clipped - 16 lines]
>function swapImage() {document.images.image1.src="/images/1stimage.gif";}
>function swapBack() {document.images.image1.src="/images/2ndimage.gif";}
You see how you waste resources when you don't copy and paste the
actual code? The pathnames to your images are probably wrong.
Open each image directly in your browser and copy the full URL
into your code.

Signature
Ed Jay - 28 Apr 2006 20:38 GMT
Lee scribed:
>Ed Jay said:
>>
[quoted text clipped - 23 lines]
>Open each image directly in your browser and copy the full URL
>into your code.
Thanks, Lee. Image path was the problem.

Signature
Ed Jay (remove 'M' to respond by email)
Tony - 29 Apr 2006 22:45 GMT
> Ed Jay said:
>
[quoted text clipped - 23 lines]
> Open each image directly in your browser and copy the full URL
> into your code.
Actually, the way the paths are defined, it's looking for directory
'images' under the root.
I'd be willing to bet that removing the preceding '/' would help - and a
bit of time spent learning the difference between absolute & relative paths
Ed Jay - 30 Apr 2006 06:38 GMT
Tony scribed:
>> Ed Jay said:
>>
[quoted text clipped - 28 lines]
>
>I'd be willing to bet that removing the preceding '/' would help -
No, but adding either the path to root or a single period would.
./images/image.gif
>and a
>bit of time spent learning the difference between absolute & relative paths
:-)

Signature
Ed Jay (remove 'M' to respond by email)