certainlyakey
9/6/2016 - 8:06 AM

Do not show outline when clicking a toggleable element while displaying it when tabbing through it

Do not show outline when clicking a toggleable element while displaying it when tabbing through it

a.header:active:focus {
  outline:none;
}
$('a.header').mouseup(function() {
  this.blur();
});