. . . removing the dotted selection box that surrounds a selected image or link immediately after the selected object is clicked.
What is it called and where would I find it?
SpaceFrog
8:30 am on Mar 23, 2005 (gmt 0)
onfocus="this.blur()"
Bernard Marx
7:40 pm on Mar 23, 2005 (gmt 0)
That code will make links inaccessible for people that need to navigate using tabs.
Rambo Tribble
9:10 pm on Mar 23, 2005 (gmt 0)
Yes, to do the deed after the click event has the chance to be registered by various means, simply end your onclick-called functions, methods, or whatever with
this.blur();
rather than calling it as soon as focus is gained.