Works in IE/Moz...don't know about anything else. This is a global solution...might 
want to hack it up if you want only specific links.

<script type="text/javascript">
function removeLinkClickBorders() {
  for (i = 0; i < document.links.length; i++) {
        document.links[i].onclick = _killborders;
  }
}

function _killborders() {
        this.blur();
}       
window.onload = removeLinkClickBorders;
</script>

<style>
a:focus {
        -moz-outline: none;
}
</style>



>-----Original Message-----
>From: Ian Skinner [mailto:[EMAIL PROTECTED] 
>Sent: Thursday, August 28, 2003 1:03 PM
>To: CF-Talk
>Subject: OT: Box Highlights of hover/active links.
>
>Ok, the designers are bugging us that the light-dashed box that highlights
>links when the mouse is over them is "UGLY! Can't we get rid of it?"  Can we
>get rid of it?  I'm not aware of any CSS property for this, but I'm not
>sure.
>
>
>--------------
>Ian Skinner
>Web Programmer
>BloodSource
>Sacramento, CA
>
>
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. 
http://www.fusionauthority.com/signup.cfm

Reply via email to