Diane wrote:
> http://freewebs.com/imagetest/zoom.html
I couldn't access any of those url's from my country, I had to use "The
Clock" <URL:http://www.the-cloak.com> ='/
> Any idea why? or how I can get it to do what I want?
> email (remove x) or reply here, any help GREATLY appreciated..
Your code is looking strange Mrs. Diana
<DIV STYLE='position=absolute; left:150'><A HREF='#'
ONMOUSEOVER="document.pic.src='big.jpg'"
ONMOUSEOUT="document.pic.src='thumb.jpg'">
<IMG SRC='thumb.jpg' NAME='pic' BORDER='0'></A></DIV>
You should try to follow the w3.org <URL:http://www.w3.org> standards,
for example the name attribute already got deprecated.
Besides that, the problem is: when you have two elements with the same
name, they become a collection. Ex:
<input type="text" name="field" />
<input type="text" name="field" />
To access the first and the second one, you must use form.field[0] and
form.field[1] respectively. The same applies to your images.
--
Jonas Raoni Soares Silva
http://www.jsfromhell.com