Functions linked to Image Maps

bigcougar

New Member
I am not sure if this can be achieved, but I want to link the hot spots on my image map to functions that get executed instead of the usual "href=Page.html".
Is this possible?
 

bcee

New Member
<area shape='blah' coords='0' href='javascript:void(0)' onclick='dostuff()'>

or just href='javascript:dostuff()'
 

zhoom

New Member
<area shape='blah' coords='0' href='javascript:void(0)' onclick='dostuff()'>

or just href='javascript:dostuff()'

Great idea. I remember that this was also my problem before. Now I know how to do it. Thanks.
 
Top