Link to home
Start Free TrialLog in
Avatar of falfouli
falfouli

asked on

How can i prevent a dotted border to appear after i click on a link?

How can i prevent a dotted border to appear after i click on a link?
Avatar of darren-w-
darren-w-
Flag of United Kingdom of Great Britain and Northern Ireland image

I dont thing this can be done, its system and browser specific
Avatar of Gurvinder Pal Singh
which browser? i don't get any dotted border when i click any link?
Avatar of falfouli
falfouli

ASKER

ie and ff
You could do it with javascript:

<script type="text/javascript">
function redirect(a)
{
window.location = a;
}
</script>

<div><p style="color:blue" onclick="redirect('http://www.google.co.uk');">test code</p></div>

Open in new window

can you share the internet link which is showing you a dotted border?
for example my site: www.islamobec.com
when you click on the next navigation arrow there is a big ugly border that appears??
SOLUTION
Avatar of nedlogan
nedlogan
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
ASKER CERTIFIED SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
thank you