Forums
This topic is locked
dotted link lines
Posted 02 Dec 2002 16:22:11
1
has voted
02 Dec 2002 16:22:11 steven aerts posted:
Does anybody knows how I can get rid of those ugly dotted lines around links 'on click' ? I had a behaviour in dw 4, now I have dw mx and I can't seem to find it. Replies
Replied 02 Dec 2002 18:57:32
02 Dec 2002 18:57:32 Dave Clarke replied:
Hi
the extension you want can be found on the macromedia exchange, it is called IE Link Scrubber, don't know if it's MX compatible though.
Be aware that the dotted lines you refer to are there for a purpose, they are an accessibility feature for the visually impaired.
Dave
ASP|VBScript|IIS5.1|Access|WinXPPro & WinXPHome
Edited by - Davecl on 02 Dec 2002 19:04:31
the extension you want can be found on the macromedia exchange, it is called IE Link Scrubber, don't know if it's MX compatible though.
Be aware that the dotted lines you refer to are there for a purpose, they are an accessibility feature for the visually impaired.
Dave
ASP|VBScript|IIS5.1|Access|WinXPPro & WinXPHome
Edited by - Davecl on 02 Dec 2002 19:04:31
Replied 12 Dec 2002 05:00:04
12 Dec 2002 05:00:04 Antonette Uy replied:
did you try the behavior of your MX to be set on your browser?
Replied 12 Dec 2002 06:13:24
12 Dec 2002 06:13:24 Dan The Man replied:
here is one way of doing it
<a href="#" onFocus="blur()">mylink</a>
or
<html>
<head>
<title></title>
<script language="JavaScript">
<!--
function blurIt(obj) {
if (navigator.appName == 'Microsoft Internet Explorer' || document.all)
obj.blur();
}
//-->
</script>
</head>
<body>
<a href="#" onFocus="blurIt(this)">mylink</a>
</body>
</html>
Edited by - ANIMESHRINE1134 on 12 Dec 2002 12:29:24
<a href="#" onFocus="blur()">mylink</a>
or
<html>
<head>
<title></title>
<script language="JavaScript">
<!--
function blurIt(obj) {
if (navigator.appName == 'Microsoft Internet Explorer' || document.all)
obj.blur();
}
//-->
</script>
</head>
<body>
<a href="#" onFocus="blurIt(this)">mylink</a>
</body>
</html>
Edited by - ANIMESHRINE1134 on 12 Dec 2002 12:29:24