Wednesday, September 22, 2010

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 ,
1. Jquery 1.2.2 .js
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.

No comments:

Post a Comment