-1

I want to create a mobile version to http://thenamestork.com. After reading a few posts as well as the official google blog, I understand that a valid mobile site, that will get indexed in google mobile search, is made with different markup languages than html4. I also understand there's a problem with using JS, and my site is JS based (works more like an app than a content-website).

My focus is on smartphones, that CAN handle my site anyway - I thought all I'll need to do is changing the css layout - but there is no point if it won't get indexed by google.

So what's the best way to convert a html4 javacsript site into a valid, search engine friendly mobile version?

Roy
  • 1,307
  • 1
  • 13
  • 29
  • If I'm understanding correctly, you're basically asking these two questions: "can I use HTML4/JS for mobile?" and "how can I convert HTML4/JS into search engine friendly markup?". Is that correct? If so: has your question been answered? – Peter-Paul van Gemerden Oct 13 '11 at 18:59
  • @PPvg The second question is what I'm asking - "what's the best way to convert a html4 javacsript site into a valid, search engine friendly mobile version?". It has not yet been answered - not specifically for google search for mobile. – Roy Oct 16 '11 at 15:39
  • Well, to be quite honest: I don't think you need to do anything. Google will happily index any HTML4 site, even if its markup is slightly iffy (i.e. not completely valid). You see -- it's in any search engine's best interest to index anything it possibly can. If your site is not showing up on search engines at all, I suggest you [submit your site to Google](http://www.google.com/submit_content.html) to begin with. – Peter-Paul van Gemerden Oct 16 '11 at 16:15

3 Answers3

0

Google is actually quite forgiving and will index most sites that use something that looks a bit like HTML, even if it's nog 100% valid. Just to be on the safe side, though, you could try validating your HTML.

On the other hand, if you load content asynchronously (i.e. through AJAX), Google might not index it. Search engines generally only index the HTML that's sent to the browser when the page is loaded, without running any JavaScript.

0

You can certainly use html and javascript for a mobile site for smart phones. Browsers on smart phones are mostly the same as the ones you find on a desktop (with some added features).

jQuery Mobile is a good place to start. I have used it for a few sites I've worked on.

Cfreak
  • 19,191
  • 6
  • 49
  • 60
0

Yes you can, you might also want to check a little of CSS3 and Html5 since mobile devices are mostly compatible with!

Charles Forest
  • 1,035
  • 1
  • 12
  • 30