[advanced search]
 

Go Back   NamePros.com > Discussion > Web Design & Development > Programming

Programming PHP, Perl, Ruby on Rails, AJAX, HTML, XHTML, CSS, JavaScript, MySQL and any other coding topics.


Closed Thread
 
LinkBack Thread Tools
Old 03-18-2008, 02:12 PM   #1 (permalink)
NamePros Regular
 
~ The 34 Year Buzz!!'s Avatar
 
Join Date: Aug 2006
Location: Cyberspace
Posts: 493
5,024.25 NP$ (Donate)

~ The 34 Year Buzz!! is a name known to all~ The 34 Year Buzz!! is a name known to all~ The 34 Year Buzz!! is a name known to all~ The 34 Year Buzz!! is a name known to all~ The 34 Year Buzz!! is a name known to all~ The 34 Year Buzz!! is a name known to all


Help! Ajax, XML, and SEO

A question about Ajax, XML, and SEO:

The end-user sees a page with titles, brief descriptions, and perhaps dates or locations listed on the left side.
The right side of the web page is a section for details, initially showing only the 'default' info.

Now the end user clicks on any of the titles, and Ajax + an XML document produce the expanded details on the right side.

Q) Will Google bots 'see', and index, the entire XML page-with all the details (and links?), or is the indexing limited to what the end-user first sees?

Do bots 'follow along' when Ajax is involved??

Thank you.
__________________
Are you happy today? :)

>>> Win NP$25 Now and Compete For NP$500 (((or more))) <<<
~ The 34 Year Buzz!! is offline  
Old 03-18-2008, 02:19 PM   #2 (permalink)
NamePros Regular
 
Teddy's Avatar
 
Join Date: Sep 2003
Location: New Jersey / Boston
Posts: 670
69.50 NP$ (Donate)

Teddy has a spectacular aura aboutTeddy has a spectacular aura about


This is one of the major problems with bots and Ajax. They do not follow the pages or index the content that is loaded with Ajax. If the content is not able to be called upon from a URL (for example using Ajax to load content on a page) it can not be spidered by a SE. The content must be accessible by a separate URL for a bot to spider it.

This is how I understand it and I don't always get it right, so if anyone has anymore info on this please feel free to correct me.
__________________
Previously known as Schoolsux
I've finally returned.
Current project: Your Free Forum
Teddy is offline  
Old 03-18-2008, 02:32 PM   #3 (permalink)
NamePros Regular
 
~ The 34 Year Buzz!!'s Avatar
 
Join Date: Aug 2006
Location: Cyberspace
Posts: 493
5,024.25 NP$ (Donate)

~ The 34 Year Buzz!! is a name known to all~ The 34 Year Buzz!! is a name known to all~ The 34 Year Buzz!! is a name known to all~ The 34 Year Buzz!! is a name known to all~ The 34 Year Buzz!! is a name known to all~ The 34 Year Buzz!! is a name known to all


More info...

Quote:
Originally Posted by Teddy
This is one of the major problems with bots and Ajax. They do not follow the pages or index the content that is loaded with Ajax. If the content is not able to be called upon from a URL (for example using Ajax to load content on a page) it can not be spidered by a SE. The content must be accessible by a separate URL for a bot to spider it.

This is how I understand it and I don't always get it right, so if anyone has anymore info on this please feel free to correct me.
Thanks, for the quick answer.
I found a solution, but don't understand how to use it.

AJAX and SEO: How to have an SEO Friendly AJAX website using jquery
__________________
Are you happy today? :)

>>> Win NP$25 Now and Compete For NP$500 (((or more))) <<<
~ The 34 Year Buzz!! is offline  
Old 03-18-2008, 06:06 PM   #4 (permalink)
NamePros Regular
 
DylanButler's Avatar
 
Join Date: Jan 2006
Location: San Diego, CA
Posts: 704
0.00 NP$ (Donate)

DylanButler is a splendid one to beholdDylanButler is a splendid one to beholdDylanButler is a splendid one to beholdDylanButler is a splendid one to beholdDylanButler is a splendid one to beholdDylanButler is a splendid one to beholdDylanButler is a splendid one to behold


That author is just dancing around a basic topic of web usability which is to make gracefully degrading code, this includes creating fallthroughs for non-JS users. That means create a non-JS version, set the <a href="nonjsversion.htm"> and just override the default event when the link is clicked (by returning false, or using YUI's preventDefault() as I prefer).

<a href="addToCart.php?item=apples" onclick="addToCart(apples, event)">

Is better than

<a href="#" onclick="addToCart()">

It often creates work that you'll sometimes feel is pointless, but it can actually help out a lot (not only for SEO, but also printing and also accessibility).

Hope this helps,

Dylan
__________________
:great: -Dylan Butler

EXAMP - San Diego Web Design

Last edited by DylanButler; 03-18-2008 at 06:16 PM.
DylanButler is offline  
Closed Thread


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Site Sponsors
Advertise your business at NamePros

All times are GMT -7. The time now is 10:46 PM.


Powered by: vBulletin® Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.3.0
Template-Modifications by TMS
vBCredits v1.4 Copyright ©2007 - 2008, PixelFX Studios

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85