How to avoid focus on buttons after click?

A

awesterink

I have a menu bar with a row of buttons that use a DHTML mouseover effect.
During runtime, after I click on a button it receives focus, which results
in IE showing a selection rectangle around it.
Is there a way to avoid that?

Thx!
 
J

Jon Spivey

Hi,
There is but this feature is very useful to people who can't use a mouse -
so it's probably not wise to disable it
<a onfocus="if(this.blur)this.blur();"....
 
A

awesterink

Excellent. Appreciate the quick reply, thanks!

Jon Spivey said:
Hi,
There is but this feature is very useful to people who can't use a mouse -
so it's probably not wise to disable it
<a onfocus="if(this.blur)this.blur();"....
 
Top