/ 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
$('a').each(function () { $(this).attr('hideFocus','true').css('outline','none'); });
You need to login to post a comment.
