View Single Post
  #16 (permalink)  
Old 08-23-2007, 11:23 AM
kgun's Avatar
kgun kgun is offline
WebProWorld 1,000+ Club
WebProWorld MVP
 
Join Date: May 2005
Location: Norway
Posts: 5,723
kgun RepRank 10kgun RepRank 10kgun RepRank 10kgun RepRank 10kgun RepRank 10kgun RepRank 10kgun RepRank 10kgun RepRank 10kgun RepRank 10kgun RepRank 10kgun RepRank 10
Default Re: With Web 2.0 sites around, Is SEO still necessary

There is a book that handles this topic very thoroughly. The code that follows with the book can be copied directly into your project. The book is

Christian Darie et al (2006 and later): "AJax and PHP - Building Responsive Web Applications." Packt Publishing

There are two different views:
  • progressive enhancement
  • graceful degradation
"The beauty of it is you don't have to. The key concept is called progressive enhancement, and it works like this:
  1. Write the code so that it works with the simplest user agent: anything that supports HTTP and HTML.
  2. Add 'bells and whistles' unobtrusively: images, CSS, JavaScript, Flash, MathML, SVG, embedded video, ...
This is far easier, and usually yields much better accessibility, than the older concept known as graceful degradation:
  1. Write the code for top-of-the-line user agents, including all cool features.
  2. Try to make each feature degrade gracefully if not supported".
Source: AJAX Or Nothing

Last edited by kgun; 08-23-2007 at 11:26 AM.
Reply With Quote