MyBB Community Forums

Full Version: Google Search
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
anyone here a search engine expert?

i have a site that is very encyclopedia-ish, where i display a bunch of information on certain items for a game..

imagine a shopping site where you have all those items organized in tables, and each table has the name of the item, description, price, function, etc. i would just call a function to format it
formatme(name, description, etc)
function formatme(
document.write(<table><td><tr>)
document.write(name)
document.write(description)
document.write(etc)
document.write(</tr></td></table>)
it's fairly uniform, so i decided to just create a javascript function to format all the data (coming from a database) into their little boxes.

my question is, how would google handle this? my information now is all inside javascript function calls instead of flat out HTML. i know it's probobly not gonna display the js formatted output, but will it still the information?

let's say i search for "pie" and the word "pie" does appear in my page, but it's inside JS scripts.