Advanced Search Module

Close Search
 

Jquery Link Scrubber Hack for Blogger

August 7, 2008Blogger Hack

8 Comments

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.

Related posts:

  1. Colorful Link Hover Hack for Blogger
  2. Page Navigation Hack for Blogger
  3. Add yahoo Smileys on Blogger Posts – Blogger hack
  4. Display CSS codes and Scripts in unique Style – Blogger Post Styling hack
  5. Add Yahoo Smileys to Blogger Posts – Firefox Hack
 
 

8 Responses to “Jquery Link Scrubber Hack for Blogger”

  • Wolverine August 16, 20085:48 am

    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;}

  • Mohamed Rias August 16, 20089:41 am

    Hi Wolverine ,

    Yes we can achieve that using that simple CSS.
    Thanks for mentioning that CSS.

    regards,
    Blogger Accessories

  • Mishef August 25, 20083:48 pm

    Thanks! Its very helpful..

  • ¢r!$†!ãn Omg!! ... November 19, 20085:32 am

    a

  • Shafar January 21, 20094:42 pm

    Wow I think you have great knowledge about Jquery.. Really nice man..

  • fyzue February 16, 20099:00 am

    nice trick, i put it on my blog right now.
    Say no to dotted line… :)

  • Emb March 3, 20096:52 pm

    And this…???
    a {outline: none}

  • Aravind D Reddy May 23, 200911:38 am

    This too is nice.

 
 

8 Responses to "Jquery Link Scrubber Hack for Blogger"