Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

For SEO, I have been tasked with adding a rel="nofollow" to all external links*.

The simplest and least obtrusive way to add rel="nofollow" to each external link is with some jQuery. I've done this fine but just wondering:

Does Google see changes made during jQuery's document load to the DOM (such as this one) or does it only see the original source code?

*I don't want to discuss why this is a bad idea or not. This is an SEO consultant's decision and I've learnt that unless implementation of their latest whim takes too much time, to just go along with what they want

share|improve this question
Googlebot does read javascript, as to nofollow on links, I'd guess you'll be better of having those hardcoded when it comes to SEO. – adeneo Jan 15 at 10:47
what is point of no-follow for external links? If all internal links are relative might be able to set some sort of htttp rule in robots.txt to keep SEO clown happy – charlietfl Jan 15 at 10:50

1 Answer

up vote 2 down vote accepted

It looks like Google spider does execute some JavaScript, but I do not believe it would execute large libraries like jQuery..

Please check interview with Matt Cutts

Matt Cutts: "For a while, we were scanning within JavaScript, and we were looking for links. Google has gotten smarter about JavaScript and can execute some JavaScript. I wouldn't say that we execute all JavaScript, so there are some conditions in which we don't execute JavaScript. Certainly there are some common, well-known JavaScript things like Google Analytics, which you wouldn't even want to execute because you wouldn't want to try to generate phantom visits from Googlebot into your Google Analytics".

There are also some additional details on Google Spider improvements (JavaScript/AJAX support) on Google Webmaster Central Blog

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.