Home Articles FAQs XREF Games Software Instant Books BBS About FOLDOC RFCs Feedback Sitemap
irt.Org
#

Q612 In Internet Explorer how can I remove the border that appears around an image link when clicked?

You are here: irt.org | FAQ | JavaScript | Image | Q612 [ previous next ]

Try:

<A HREF="javascript:void(0)" onFocus="this.blur()"><IMG SRC="image1.gif" WIDTH="100" HEIGHT="100" BORDER="0" /></A>

The following was submitted by Euiseok

<script>
function looseFocus() { this.focus(); }
<script>

<a href="menu.html" onFocus="looseFocus()">

<img src="menu.gif" width="100" height="20" ></a>

Feedback on 'Q612 In Internet Explorer how can I remove the border that appears around an image link when clicked?'

©2018 Martin Webb