| | |||||
| ||||||||
| Programming PHP, Perl, Ruby on Rails, AJAX, HTML, XHTML, CSS, JavaScript, MySQL and any other coding topics. |
![]() |
| | LinkBack | Thread Tools |
| | THREAD STARTER #1 (permalink) |
| NamePros Regular Join Date: Aug 2006 Location: Cyberspace
Posts: 654
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() | |
| |
| | #2 (permalink) |
| NamePros Regular Join Date: Sep 2003 Location: New Jersey / Boston
Posts: 649
![]() ![]() | 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 |
| |
| | THREAD STARTER #3 (permalink) | ||||
| NamePros Regular Join Date: Aug 2006 Location: Cyberspace
Posts: 654
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() | More info...
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! :o) | ||||
| |
| | #4 (permalink) |
| NamePros Regular Join Date: Jan 2006 Location: San Diego, CA
Posts: 735
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() | 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)"> ????: NamePros.com http://www.namepros.com/showthread.php?t=446292 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
Last edited by DylanButler; 03-18-2008 at 07:16 PM.
|
| |