Advanced Search Module
Jquery Link Scrubber Hack for Blogger
Everyone would have noticed in their Blogs that whenever you click an Link a dotted border appear around the link. The dotted Border not only appears for links but for all images , Post Titles , etc. It’s some what Annoying . After surfing internet for a while Now I have found a hack developed by Crismancich , which removes the dotted line onfocus from links.
What things We need ?
To Implement this Link Scrubber Hack we need to scripts namely ,
2. Link Scrubber Script
How to implement this Link Scrubber Blogger Hack ?
Go to Layout section of your Blog Template and then navigate to Edit HTML sub tab.
Now search for this code </head> and place the following code immediately above that line.
<script type=”text/javascript” src=”http://jqueryjs.googlecode.com/files/jquery-1.2.1.pack.js”></script>
<script type=”text/javascript” src=”http://www.crismancich.de/jquery/plugins/linkscrubber/jquery.linkscrubber.js”></script>
or
<script type=”text/javascript” src=”http://jqueryjs.googlecode.com/files/jquery-1.2.1.pack.js”></script>
<script> $(document).ready(function(){$(“a”).bind(“focus”,function(){if(this.blur)this.blur();});}); </script>
That’s it We have successfully added Jquery Link Scrubber Hack for Blogger.
Jquery script must be above Link Scrubber Script
If you Have any doubt please ask me , I am here to help you .
See you soon with a new hack.
Related posts:


8 Responses to “Jquery Link Scrubber Hack for Blogger”
there is one more trick to overcome this problem..
just add the following code between <head> and </head>
a {outline: none;}
a img {border:0px;outline: none;}
Hi Wolverine ,
Yes we can achieve that using that simple CSS.
Thanks for mentioning that CSS.
regards,
Blogger Accessories
Thanks! Its very helpful..
a
Wow I think you have great knowledge about Jquery.. Really nice man..
nice trick, i put it on my blog right now.
Say no to dotted line…
And this…???
a {outline: none}
This too is nice.