[thelist] Image map problem

Poojie poojie at dccnet.com
Wed Oct 3 05:12:42 CDT 2001


> Does anybody know if there is a way of removing image map borders
in IE when
> they are clicked.


You bet!

insert this javascript into the <area> tag:

 onFocus="javascript:if(this.blur)this.blur()"

----------------------------------------------------------------
example:

<MAP NAME="intro_sign">
<AREA SHAPE="POLY"
COORDS="7,68,12,108,76,174,138,304,184,304,173,90,90,16,37,8,12,38"
ALT="Click to enter" HREF="index.html"
onFocus="javascript:if(this.blur)this.blur()">
</MAP>
----------------------------------------------------------------

Not an excellent example of good web design techniques, but you get
some context for the javascript :]

Daryl






More information about the thelist mailing list