Mobile app version of vmapp.org
Login or Join
Voss4911412

: Will using tabs with JavaScript (jQuery) hurt my SEO because of crawlability? I have a page with tabs like this: http://www.problemio.com/problems/problem.php?problem_id=180 See how there are 3 tabs?

@Voss4911412

Posted in: #Javascript #Seo #TabbedContent

I have a page with tabs like this:
www.problemio.com/problems/problem.php?problem_id=180
See how there are 3 tabs? Only the content from one of them shows up when the user lands on the page, and the content from the other two shows up only when the user clicks on the tabs.

And the change happens using jQuery and JavaScript. But all the text is loaded when the page loads.

What I am wondering is whether this will hurt my SEO and make it harder for Google to index the complete pages?

10.03% popularity Vote Up Vote Down


Login to follow query

More posts by @Voss4911412

3 Comments

Sorted by latest first Latest Oldest Best

 

@Murray155

Yes it will probably hurt your SEO, if you are only using javascript to structure your site's content.

Edit: the javascript wont hurt your SEO, but you have to be carefull not to neglect the proper use of HTML for structuring your website.

To get a good idea of what search engines are indexing I always turn off CSS and javascript and see what I end up with. If the page is still structured and uses proper HTML tags for structuring and dividing I know i'm good.

However, search engines are always finding new and better ways to index your pages and rank the content. I wouldn't be suprised, like paulmorriss pointed out, that they are looking into interacting with javascript to see if there is more content to index. This holds especially for sites that use asynchronous javascript (ajax) to load external content into the page.

10% popularity Vote Up Vote Down


 

@Candy875

Search engines don't generally run javascript when they crawl a page, so they will see the full text when they load the page. (Google is experimenting with running some javascript, but we don't know much about that.)

10% popularity Vote Up Vote Down


 

@Pope3001725

This is fine. Since the content is available on the page when the page loads all search engines bots can find and index that content.

FYI, if you are going to also make that content available without JavaScript, which is good accessibility, make sure you use canonical URLs so you don't have duplicate content issues since multiple URLs will load the same content.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme