Do texts loaded via Jquery harm SEO?

Asked

Viewed 22 times

0

I’m developing a website, but for technical reasons I won’t be able to use a database and no server side language. As the system will have MANY posts (more than 500), I am loading this via Jquery, it takes the texts of each recipe by loading . txt, according to the URL. That is, it works like this:

$(document).ready(function() {
   $.ajax({
      url : "helloworld.txt",
      dataType: "text",
      success : function (data) {
         $(".recebe_postagem").html(data);
      }
   });
});

On the screen where all the posts are, it shows all the posts by looping through all the . txts that are in a folder. When you click on one to see the details, Jquery sees which URL is clicked and loads the . txt for this post. So far, no secrets.

My question is regarding SEO, will Google be able to index each post? Because in theory the texts will be loaded after the HTML has already loaded. Or this function were also?

  • 1

    The Crawler, in addition to "scanner" the page, it also "clicks" on all links, even those that are hidden (black hat). So in theory it will click on everything and index all the accessed content.

No answers

Browser other questions tagged

You are not signed in. Login or sign up in order to post.