Forum Moderators: open
Will this have massive SEO repurcussions? Will Google be able to figure out the navigation links or tabbed content? Is there any particular method that can help Google work things out?
Any information would be very much appreciated...I know it's quite a newbie question :).
Will Google be able to figure out the navigation links or tabbed content?
The answer is a guarded 'yes'--provided that you do not use javascript to create or fetch the content on the fly. In other words, build the page in such a way that when the webserver delivers it to the browser, all of the content is already in the page. You can then use javascript to manipulate the content--e.g. javascript can be used to show, hide, rearrange or alter the content already in the page--but if you need to do database calls to output content that must be picked up by search engines, use a server-side scripting language instead. This general approach also ensures that your pages will be usable by visitors who surf with javascript disabled.
Try a search for unobtrusive javascript [google.com] for more information on safe approaches to the use of javascript.
-b