vote up 4 vote down star

I am wondering what the googlebot will see when we use jQuery for rounded corners where jQuery generates the outer divs for the corners.

Will this method affect SEO ranking?

flag

1  
Can someone explain to me why this is programming related? – Burkhard Jul 6 at 18:25
1  
@Burkhard: Because he's asking about the effect of using javascript to programatically alter the structure of an HTML page. – Draemon Jul 7 at 11:32
1  
Can someone explain to me why this is not programming related? – eyelidlessness Jul 24 at 7:02

5 Answers

vote up 11 vote down check

The Google web crawler won't see the rounded corners, but it doesn't matter. It's not interested in how pretty the page looks, it's only interested in the content, links, and any meta information you may have included. The rounded corners are for aesthetics and user appeal, and will have no bearing on the bot.

link|flag
4  
...unless the bot gives extra points for 'awesome'. – nilamo Jul 6 at 17:22
but what would be 'awesome' for a bot? :) – peterchen Jul 6 at 17:47
I think a bot would find a page awesome if all its external elements have size = 1337 bytes – Martin Nov 3 at 16:38
vote up 7 vote down

googlebot will see your source. Look at your site with javascript disabled to get an idea.

link|flag
vote up 4 vote down

For a discussion of what googlebot does with Javascript on your page, see here (it's not the simplest issue in the world, and of course it can change all the time as the bot keeps being developed in order to try and handle JS "for the best" in the face of an always-changing web!-).

link|flag
vote up 2 vote down

As Alex Martelli pointed out, Googlebot does have some measure of javascript parsing ability, but you absolutely should NOT rely on it. For the most part, it sees the page without any javascript or CSS enabled, basically. It doesn't care about the layout, just the raw HTML content. This is a good moment to note why Flash and AJAX content are utterly terrible for SEO.

To answer your question, no, the jQuery rounded corner divs will not affect your ranking.

link|flag
vote up 1 vote down

Googlebot only reads the source code of your site. It tries to break down the hierarchy of content on the page and extract a topic or keywords that seem to represent the page. It won't see anything you insert dynamically with JavaScript.

This is one of the most compelling arguments for unobtrusive JavaScript and CSS styling. Using CSS, you can make virtually any markup appear any way you like, so best practice is to write your HTML in a very semantic, logical fashion, then script and style on top of that to make the page attractive and usable for your human audience using a visual browser.

link|flag

Your Answer

Get an OpenID
or

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