jquery appended element from xml and SEO -


i have created website based on xml database file. 1 page website displays portfolio, blog , articles contents.

my index.html page uses jquery isotope plugin display thumbnails. thumbnails appended onload xml file. when thumbnail clicked, new content appended, url change history.js , displayed xml file.

so near content append xml , not hardcoded. works fine , fast. (my xml database not huge... have 100-200 entries @ maximum (like personal blog or portfolio). each entry, there url, image link, title, tags, , descriptions).

here example of entry :

<element id="10" size="wide" category="portfolio">     <tag tag="tag1 tag2 tag3 tag4"></tag>     <icon class="icon-picture"></icon>     <urlpage url="/portfolio/url.html"></urlpage>     <urlimage src='./post thumbnail images/image.jpg'></urlimage>     <date date="05 feb"></date>     <title>title</title>     <description>blablablabla 50 lines maximum...</description> </element> 

however, i'm asking important question seo.... how can optimize website seo.

does sitemap works , enough?

if chose xml database, it's because entries not complicated. , have created live admin panel allows remove, edit or create new entries xml file.

by way started learn webcoding 4 months ago... ,i'm new in world...

sorry english, i'm french.

a sitemap not sufficient in terms of seo. when crawler gets page, doesn't use javascript, appear if it's empty (that if load content javascript).

if want seo, should make sure content available in html. if still want read xml-file should use server-side technology such php, jsp, asp.net, ...

if still want same user experience js solution, employ technique serve directly if it's google crawler, not if it's normal user. (or better, serve directly if client doesn't have js enabled).

this small overview of techniques need this. it's not possible explain these things in so-answer. however, read bit on these techniques, try things out , come here if stuck.


Comments

Popular posts from this blog

linux - Does gcc have any options to add version info in ELF binary file? -

android - send complex objects as post php java -

charts - What graph/dashboard product is facebook using in Dashboard: PUE & WUE -