Reputation: 6130
I'm using a basic accordion with jQuery UI and I was wondering how can I remove that "glare" which appears when I click on the accordion tab:
Thanks!
Upvotes: 2
Views: 280
Reputation: 8454
CSS: outline: none;
It's something the browser adds to elements that have focus.
Upvotes: 3