//flex table opened by JP

Click to See Complete Forum and Search --> : Cool trick I just learned...


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

HomeYield
06-22-2001, 06:34 AM
That is a cool trick! Thanks for the heads up golfcart.

socalgal
06-22-2001, 03:58 PM
Thanks, golfcart, I'll try that on my image map. http://www.sysopt.com/forum/smile.gif

Cygnus-X1
06-22-2001, 07:35 PM
Nice tip!!

Robert