How to make no-follow all external link Automatically by jQuery Plugin

How to make no-follow all external link Automatically by jQuery Plugin
tricks

Blogger always want to get higher Page Rank from Google, for this reason they work hard all the time.  But after hard working you are sharing your Page Rank juice with other site for making your external link do-follow. By default all of your blog external link will be do-follow and some blogger make it no-follow by attributing a simple tag rel='nofollow'.  But if you have huge external link then you might have to do manually which is not possible all the time. So by a piece of jQuery Plugin you can make your blog's all external link no-follow automatically.

Google

It will save your time and you can stop to share your Blog Rank Juice. However some SEO site brought a controversial argument about no-follow and do-follow link. they are giving an argument that if we get a backlink from other site then it doesn't matter about no-follow blog. Because Search Engine always count it as backlink.

Anyway, this JQuery Plugin that don't allow to share Google Page Rank juice which will help your


Step 1 Log in to your Blogger account and Go to your Blogger Dashboard

Step 2 Click on -> Template -> Edit HTML

Step 3 Now Find this code </Head>  by Pressing  Ctrl + F

Step 4 Paste the below code  Before/above </Head> 



<!-- no-follow external link by www.bloggerspice.com -->
<script src='http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.js' type='text/javascript'></script><script type="text/javascript">
jQuery(document).ready(function () {
jQuery('a[href*="http://"]:not([href*="http://www.bloggerspice.com"])').attr('rel', 'nofollow');
jQuery('a[href*="https://"]:not([href*="https://www.bloggerspice.com"])').attr("target", "_blank");
    });
</script>
<!--End of the code-->


Customization

  • If you are already using <script src='http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.js' type='text/javascript'></script>  Jquery file then don't add it.
  • Replace bloggerspice.com with your own blog address.

If you have anything to share with us then leave a comment below.
Go Up