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

I have a webpage that implements a set of tabs each showing different content. The tab clicks do not refresh the page but hide/unhide contents at the client side. Now there is a requirement to change the page title according to the tab selected on the page ( for SEO reasons ). Is this possible? Can someone suggest a solution to dynamically alter the page title via javascript without re-loading the page? Thanks in advance.

share|improve this question

12 Answers

up vote 82 down vote accepted

You can just do something like, document.title = "This is the new page title.";, but that would totally defeat the purpose of SEO. Most crawlers aren't going to support javascript in the first place, so they will take whatever is in the element as the page title.

If you want this to be compatible with most of the important crawlers, you're going to need to actually change the title tag itself, which would involve reloading the page (PHP, or the like). You're not going to be able to get around that, if you want to change the page title in a way that a crawler can see.

share|improve this answer

I can't see how changing the page title via Javascript will help SEO. Most (or all) search bots do not run Javascript and will only read the initially loaded title that is the mark-up.

If you want to help SEO, then you will need to change the page title in the back-end and serve different versions of the page.

share|improve this answer
2  
agreed - this won't help SEO at all, as the crawlers won't do anything with your JS – annakata Jan 5 '09 at 15:32
Maybe they just want one title but all the content on the SE, but then a more friendly organization of data once you're on the page? – Kev Jan 5 '09 at 15:32
well then they're very much going against the whole concept of SEO – annakata Jan 5 '09 at 15:39
Yeah not really good for SEO but good for the end user when bookmarking etc, for example updating a page title when the hash in the URL changes, or when using HTML5/JS window.history its good to update page title as well as URL – acSlater Apr 29 at 11:36

Using the document.title is how you would accomplish it in JavaScript, but how is this supposed to assist with SEO? Bots don't generally execute javascript code as they traverse through pages.

share|improve this answer

Is this going to work? I don't think the search engine spiders are going to run your Javascript and detect the title change.

share|improve this answer

You'll have to re-serve the page with a new title in order for any crawlers to notice the change. Doing it via javascript will only benefit a human reader, crawlers are not going to execute that code.

share|improve this answer

document.title = 'test'

share|improve this answer
I use top.document.title to reference to window itself (I have framesets...) – Dror Jan 5 '09 at 15:29
Ah, good call... – Kev Jan 5 '09 at 15:30
-1 useless for SEO. Spiders don't yet use javascript. – Adriano Varoli Piazza Jan 5 '09 at 16:08

Use document.title.

See this page for a rudimentary tutorial as well.

share|improve this answer
-1 useless for SEO. Spiders don't yet use javascript. – Adriano Varoli Piazza Jan 5 '09 at 16:07
@AdrianoVaroliPiazza we are now in 2012, you can remove your downvotes :-) – Christophe May 7 '12 at 21:12
question must be edited before I can remove them... – Adriano Varoli Piazza May 8 '12 at 17:46
love the link, it's got netscape navigator screenshots :) – Aran Mulholland Jun 13 '12 at 4:43
I would hope Spiders don't use javascript. Good way to send google malicious code? – Lee Louviere Aug 3 '12 at 18:08

One way that comes to mind that may help with SEO and still have your tab pages as they are would be to use named anchors that correspond to each tab, as in:

http://www.example.com/mypage#tab1, http://www.example.com/mypage#tab2, etc.

You would need to have server side processing to parse the url and set the initial page title when the browser renders the page. I would also go ahead and make that tab the "active" one. Once the page is loaded and an actual user is switching tabs you would use javascript to change document.title as other users have stated.

share|improve this answer

But in order to get the SEO befits

You need to do a page reload when the page changes so that the search engine's see the different titles etc.

So make sure the page reload works first then add document.title changes

share|improve this answer

you can change the title via three ways:

1- (does not work in IE) put <title id='ttl'>Hello</title> in html, then document.getElementById('ttl').innerHTML = 'World' in javascript.

2- (similar to 1) put <title>Hello</title> in html, and then document.getElementsByTagName('title')[0].innerHTML = 'world'

3- (works everywhere) document.title - 'World'

1 and 2 are slightly obscure and unstandard ways to change the title, and is probably not reccomended, so I would go with the third, seeing as it works in every browser

share|improve this answer

Maybe you can load on your title all the tabs titles in one string, and then once you load one of the tabs change the title via javascript

ex: at first set your title to

my app | description | contact | about us | 

once you load one of the tabs run:

document.title = "my app | tab title";
share|improve this answer

I just want to add something here: changing the title via JavaScript is actually useful if you're updating a database via AJAX, so then the title changes without you having to refresh the page. The title actually changes via your server side scripting language, but having it change via JavaScript is just a usability and UI thing that makes the user experience more enjoyable and fluid.

Now, if you're changing the title via JavaScript just for the hell of it, then you should not be doing that.

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.