DaveK
09-12-2006, 05:59 AM
I've had a recommendation to improve the SEO for a site that seems like a bit of a cheat but I'm assured that it works.
The page uses javascript to build a single framed frameset into which the normal page is loaded. The rest of the document contains optimised text and links which becomes the NOFRAMES section of the page. Example:
<HTML>
<HEAD>
<title.....>
<meta .....>
</HEAD>
<script language="JavaScript">
document.write('<FRAMESET ROWS="1024,*" FRAMEBORDER="NO" BORDER="0" FRAMESPACING="0">');
document.write('<frame name="topFrame" scrolling="YES" noresize src="/web.nsf" frameborder="0">');
document.write('<noframes>');
</script>
<NOSCRIPT>
<body>
Optimised text & link heavy version of the page here
</body>
</NOSCRIPT>
<script language="JavaScript">
document.write('</noframes>');
document.write('</frameset>');
</script>
</HTML>
Is this a legitimate technique or could the site be ranked down for it?
The page uses javascript to build a single framed frameset into which the normal page is loaded. The rest of the document contains optimised text and links which becomes the NOFRAMES section of the page. Example:
<HTML>
<HEAD>
<title.....>
<meta .....>
</HEAD>
<script language="JavaScript">
document.write('<FRAMESET ROWS="1024,*" FRAMEBORDER="NO" BORDER="0" FRAMESPACING="0">');
document.write('<frame name="topFrame" scrolling="YES" noresize src="/web.nsf" frameborder="0">');
document.write('<noframes>');
</script>
<NOSCRIPT>
<body>
Optimised text & link heavy version of the page here
</body>
</NOSCRIPT>
<script language="JavaScript">
document.write('</noframes>');
document.write('</frameset>');
</script>
</HTML>
Is this a legitimate technique or could the site be ranked down for it?