Friday, December 14, 2012

Remove Link's border (outline ) using CSS or JQuery


 There are two ways to remove link border or outline.

1. Using simple CSS
  * : focus { outline: none; }


 2. Using Jquery
    $("a").each(function() {
       $(this).attr("hideFocus", "true").css("outline", "none");
     });