What does this for SEO: dynamic content generated by JavaScript, pulled from json service -
i wonder seo:
say got backoffice contains articles, , accessible via json service. use jsonp fetch, , render data using javascript follows:
<body> <script src="http://myjsonservice.com/getarticles?callback=myrender" /> <script type="text/javascript"> function myrender(jsonobj){ //parse object, , put children content-container div below ... } </script> <div id="content-container"></div> </body> i got strong feeling hurts seo, seo newbie (i've heard many pages hardcoded content optimal far indexing goes).
but content json service indexed @ google? ie. bots hit url, let js modify dom, , index in-memory dom (rather hardcoded html markup only)?
i wonder think!
i don't think client side processed html processed search engine bots. have add keywords in header of page or something. see this question, phrase: in general, searchbots should treated browsers js disabled
Comments
Post a Comment