golfcart
06-21-2001, 09:12 PM
In IE when you click on a hyperlink, you get a small dotted border around the link. If you don't know what I am talking about, click on a link, then click your back button(no need if the page loads in a new window). You should see the border around the link you just clicked. The whole purpose of it is for accessability to help people navigate. Well I think it's just plain ugly http://www.sysopt.com/forum/biggrin.gif Anyhoo, to get rid of it, all you have to do is add this line of code inside your <a href> tag:
onfocus="this.blur()"
example:
<a href="http://www.sysopt.com" onfocus="this.blur()">sysopt</a>
This is especially nice for things like image maps. Hope somebody finds this usefull. Happy coding http://www.sysopt.com/forum/smile.gif
onfocus="this.blur()"
example:
<a href="http://www.sysopt.com" onfocus="this.blur()">sysopt</a>
This is especially nice for things like image maps. Hope somebody finds this usefull. Happy coding http://www.sysopt.com/forum/smile.gif