Forum Moderators: open

Message Too Old, No Replies

Isn't there a javascript for . . .

         

mordie

3:45 am on Mar 23, 2005 (gmt 0)

10+ Year Member



. . . 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)

10+ Year Member



onfocus="this.blur()"

Bernard Marx

7:40 pm on Mar 23, 2005 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



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)

WebmasterWorld Senior Member 10+ Year Member



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.