Loading content the normal way vs through ajax (json)

visionaryone77

New Member
I now have most of the pages within my cart (search results, category data, product data, cart, etc) loaded via ajax (json). I'm now thinking to load up the main category's on the home page through ajax (json) as well to further boost up the speed. This would for example look something like the following:\[code\]<b>Categories</b><br /><a href="http://stackoverflow.com/questions/13832291/#A/1234">Category A</a> <br /><a href="http://stackoverflow.com/questions/13832291/#A/5678">Category B</a><noscript><a href="http://www.domain.com/1234/category A/">Category A</a> <br /><a href="http://www.domain.com/5678/category B/">Category B</a></noscript>\[/code\]instead of just:\[code\]<b>Categories</b><br /><a href="http://www.domain.com/1234/category A/">Category A</a> <br /><a href="http://www.domain.com/5678/category B/">Category B</a>\[/code\]However would it be right to load these categories through ajax (json) as well? I tend to look how major websites are doing it and they're almost always loading up content not through ajax (json) but rather the normal (static) way. Even Stackoverflow does this. I only see gmail being 100% ajax but that's more like an app. And if I would this, would it be better to load up the category links dynamically through ajax (json) on load-up of the homepage as well to prevent search engines seeing double links (the ajax links and the noscript links)
 
Back
Top