Click to See Complete Forum and Search --> : Image Maps


davidwdf
06-13-2003, 11:08 AM
I have an image map, I use pologon's and when I click the pologon and move the mouse off you can still see the pologon. How can I fix it as to when click on the pologon the 'hotspot' will go away also. Seems I should be able to handle this with 'onMouseOut', but am stuck.

Here's a sample of the code:
<AREA shape="rect" coords="2, 108, 128, 174"a href="show.htm"
onMouseOver="changeImagemap('associate');window.status='';return true;"
onMouseOut="changeImagemap('off');window.status='';return false;"

thanks in advance for the help.

David Ferguson

Mr J
06-13-2003, 01:45 PM
Try including

onclick="this.blur()"

davidwdf
06-13-2003, 08:11 PM
thanks, I will try it