Cindy wrote on 25 jul 2003 in comp.lang.javascript:
Can someone tell me what is a hotspot button? Is it done using
javascript?
A "hotspot button" Google 573 hits !
seems to be an area of a window/image/etc that acts in a seperate way on
click or mouseover or whatever.
A clientside or serverside html mapping could provide such spots.
M$ Frontpage even has a "Polygonal Hotspot button" or so they say, I
wouldn't come near it, to make such spots.
Is it done using javascript?
No, HTML mostly:
<map name="abc">
<area onMouseOver="showpopup(this)" shape="rect"
coords="137,99,256,174" nohref>
</map>
<img src="abc3.jpg" usemap="#abc">