Google
 

Go Back   NackVision > Website Related > Web Hosting

Web Hosting If you have any question or know of good web hosts, post here.

Reply
 
Thread Tools
Old 10-24-2006, 11:55 AM   #1
♀ maLe ♀
Senior Member
 
♀ maLe ♀'s Avatar
 
Join Date: Sep 2006
Posts: 133
Lightbulb remove the little box surrounding links

This will remove the little box surrounding links (when active or clicked) on web pages.
Place the javascript inside your <head> tags...
<script type="text/javascript">
<!--
function noSel(){
 var Href = document.getElementsByTagName("A");
 for(a=0;a<Href.length;a++) {
  Href[a].onfocus = function(){
   this.blur();
  }
 }
}
//-->
</script>
And then in your <body> tag, add the onload event handler and include the function noSel(). So your <body> tag will look like this:
<html>
<head>
<title>  </title>
<head>
<body onload="noSel()">
</body>
</html>
i got no previews for this one but it works...
just a simple share...
(Offline)
 
Reply With Quote
Reply


Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump


All times are GMT -7. The time now is 03:51 AM.