Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

Different HREF for different part of an image ?

13 views
Skip to first unread message

fniles

unread,
Jan 21, 2011, 10:49:42 PM1/21/11
to
If I have an image on my web page like a map, is it possible to have
different link pointing to different part of the image ?
For example, I want to go to link for USA when the user click on the
USA on the map image, I want to go to link for Japan when the user
clicks on Japan on the map image.
Thank you

Reventlov

unread,
Feb 21, 2011, 4:55:34 PM2/21/11
to
Il giorno Fri, 21 Jan 2011 19:49:42 -0800 (PST), fniles <fiefie...@gmail.com> ha
scritto:


Search for the <area> html tag


<img src ="planets.gif" width="145" height="126" alt="Planets" usemap ="#planetmap" />

<map name="planetmap">
<area shape="rect" coords="0,0,82,126" href="sun.htm" alt="Sun" />
<area shape="circle" coords="90,58,3" href="mercur.htm" alt="Mercury" />
<area shape="circle" coords="124,58,8" href="venus.htm" alt="Venus" />
</map>


--
Giovanni Cenati (Bergamo, Italy)
Write to "Reventlov" at katamail com
http://digilander.libero.it/Cenati (Esempi e programmi in VbScript)
--

0 new messages