SEOs: mobile version using AJAX: how to be properly read by crawlers?
- by Olivier Pons
Before anything else, I'd like to emphasize that I've already read this and this.
Here's what I can do:
First choice:
create classical web version with all products in that page - http://www.myweb.com.
create mobile web version with all products in the page and use jQuery Mobile to format all nicely but this may be long to (load + format), and may provide bad user experience - http://m.myweb.com.
Second choice:
create classical web version with all products in that page
create mobile web version with almost nothing but a Web page showing wait, then download all products in the page using AJAX and use jQuery Mobile to format all nicely. Showing a wait, loading message gives far more time to do whatever I want and may provide better user experience - http://m.myweb.com.
Question: if I choose the second solution, Google won't read anything on the mobile version (because all products will be downloaded in the page using AJAX), so it wont be properly read by crawlers. What / how shall I do?