Forum Moderators: Robert Charlton & goodroi
BUT how will googlebot handle this? We currently enjoy a good SERP, but it is my understanding that google completely ignores anything javascript. What can we do without having to put the whole page in <noscript> tags (thus losing the fast load time)?
file.html
---------
<html><head>
<script src="file.js" type="text/javascript"></script>
</head><body><script>
w(cm("This text is bold and in a table"));
</script></body></html>
file.js
-------
function cm(t) {return "<table><tr><td><b>"+t+"</b></td></tr></table>";}
function w(o){document.write(o);}