Detecting NoFollow Links
Written by Joe on March 13, 2009 – 1:38 pm -
As you may already know, placing a re=”nofollow” attribute on a link will tell search engines, like Google, to not follow the link – or give credit as a vote when it comes to search rankings. This is a pretty popular thing to do to control the links in user generated content like forums and blogs – since you are who you link to, so to speak. This also helps to discourage spammers from targetting your web pages, though not always.
At any rate, you may have reasons to quickly and easily find the nofollowed links on a page, to see if your tags are done right or to easily detect where and what is getting the nofollow tag on a page. We won’t go into all of the uses, though you can use your imagination. At any rate:
Internet Explorer Detection
Paste this code into your url bar on the page you’re wanting to check, or do what I do and make it a link favorite so you can check the page with one click. I link this better than the FireFox method because maybe I don’t want every nofollow link highlighted on every page I view…
javascript: var anchors;anchors = document.getElementsByTagName("a");var anchorIndex;for(anchorIndex = 0;anchorIndex < anchors.length;anchorIndex++) { if(anchors[anchorIndex].getAttribute("rel") && anchors[anchorIndex].getAttribute("rel")=="nofollow") anchors[anchorIndex].style.backgroundColor="red";} void(0);
Firefox Nofollow Detection
You could install the SeoQuake extension and turn the nofollow highlight on in the options, or search for userContent.css and add this anywhere inside of it… (Windows XP users can find it at C:\Documents and Settings\[User Name]\Application Data\Mozilla\Firefox\Profiles\yad55ash.default(varies)\chrome\userContent.css)
a[rel~="nofollow"] { border: thin dashed firebrick! important; background-color: rgb(255, 200, 200)! important; }
Google Chrome Nofollow Detection
Drag this into your bookmarks…
Safari Nofollow Detection
This is pretty much the same as Internet Explorer (IE6 or IE7), again I’d suggest making a bookmark of any page then editing the url location with this javascript…
javascript:var%20a=document.getElementsByTagName('a');for(var%20z=0;z%3Ca.length;%20z++){if(a[z].rel==’nofollow’){a[z].style.border=’1px%20solid%20%23F00';}}
Posted in Search Engine Optimization | 16 Comments »


December 5th, 2009 at 9:06 pm
Learned a lot from your article. Good job!
March 28th, 2010 at 8:58 am
very useful…thanks a lot
June 24th, 2010 at 7:47 pm
I think google should give higher rankings to blogs that use dofollow. I dont know if they do but they should give some sort of bonus for being dofollow and not nofollow.
July 13th, 2010 at 8:10 pm
Hi there check out my New E-Book for quick traffic to your site it’s only $1.95 thats a cup of coffee Plus you get acsess to over 1000 one way link’s FREE. And a tip on how i got over $1000 in pormo codes for google to save you advertising costs to get going. I still have the emails if you want proof. And Free Link Building software.
Come to my site
August 14th, 2010 at 11:09 pm
OMG! I found this site on Bing. this is really great stuff! I have bookmarked. I will be back!
December 20th, 2010 at 10:40 am
I didn’t know it’s so easy to check nofollow
January 6th, 2011 at 11:28 am
Very tricky this microformat rel=”nofollow”.
In wordpress this is predefined for external links, as it is your’s 2!
February 8th, 2011 at 4:27 am
Very good post, I was really searching for this topic, as I wanted this topic to understand completely and it is also very rare in internet, that is why it was very difficult to understand ,
No one give the complete details about this ” no follow ” tags, but you have given complete information ,
thanks a lot and keep posting about these types of important and rare topics
February 13th, 2011 at 10:11 pm
I’m aware of this already, but nevertheless there are several useful bits which completed the picture for me, regards!
March 11th, 2011 at 12:30 pm
Good jobs, i is indeed a great article regarding tips of web promotion online. I personally would like to use these tips for my blog related to the best external hard drives as well.
May 11th, 2011 at 8:44 pm
Well, im using firefox’s no follow detection add-on. It’s so easy to detect it where the link is highlighted with red which is considered this a noFollow link.
May 29th, 2011 at 12:48 pm
Very good post, I was really searching for this topic, as I wanted this topic to understand completely and it is also very rare in internet, that is why it was very difficult to understand ,
June 16th, 2011 at 6:07 am
Great post, very usefull for finding do follow Links!
June 16th, 2011 at 10:04 am
Year, that´s rocks!
July 28th, 2011 at 6:09 am
..is there an addon to see do or no follow links for IE…the same as for chrome and mozzila?..cnat find anything.
September 19th, 2011 at 1:01 am
Thank you for sharing this, it’s now easy to determine if the links were do/nofollow. This helped me a lot.