/ Published in: jQuery
IE6 and IE7 don't respect the 'outline' attribute for hyperlinks. This jQuery snippet removes the annoying outline in these browsers.
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
$('a').each(function () { $(this).attr('hideFocus','true').css('outline','none'); });