In this post we will discuss about how to remove hyperlink outline on IE.
Also check out:
- Rename table name or column name in sql server 2008
- Working with enterprise library for data access in asp.net Part-3
- C#.Net interview questions and answers
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");
});
Also check out:
- Rename table name or column name in sql server 2008
- Working with enterprise library for data access in asp.net Part-3
- C#.Net interview questions and answers
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");
});