How to avoid focus on buttons after click?

  • Thread starter Thread starter awesterink
  • Start date Start date
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!
 
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();"....
 
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();"....
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top