I'm using jQuery buttons on my page. Whenever I click one of them the Internet Explorer adds an ugly black border because the button is active. When I brows the jQuery button sample page with IE this border is not visible when I click one of the example buttons.
Why not?? How do they avoid this border? I checked their CSS files but could not find anything...
The only way to disable that border is using a CSS filter (which is not valid CSS):
button { filter:chroma(color=#000000); }
Maybe there is a better solution to this?