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.
|
You can just do something like, 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. |
||||
|
|
|
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. |
|||||||||||
|
|
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. |
|||
|
|
|
Is this going to work? I don't think the search engine spiders are going to run your Javascript and detect the title change. |
|||
|
|
|
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. |
|||
|
|
|
document.title = 'test' |
|||||||
|
|
Use See this page for a rudimentary tutorial as well. |
|||||||||||
|
|
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:
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 |
|||
|
|
|
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 |
|||
|
|
|
you can change the title via three ways: 1- (does not work in IE) put 2- (similar to 1) put 3- (works everywhere) 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 |
|||
|
|
|
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
once you load one of the tabs run:
|
||||
|
|
|
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. |
|||
|
|
|
The simplest way is to delete
in every page in the web. Spiders will find this and will be shown in search results :) |
|||
|
|
