SEOs: mobile version using AJAX: how to be properly read by SEOs?
- 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:
Choice (1):
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.
Choice (2):
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 solution (2), 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 SEOs. What / how shall I do?