Forum Moderators: open
My question is can I put the <noframes> link to non framed contents page </noframes> anywhere on the page or does it have to be within all of the frameset code.
According to the W3C recommendation [w3.org], a noframes element is included INSIDE the frameset.
<FRAMESET cols="20%, 80%"><frames src="menu.html">
<frames src="content.html"><NOFRAMES>
<p>Here is the <a href="noframes.html">
non-frame version</a>.</p>
</NOFRAMES></FRAMESET>
But a noscript element comes after the script section is closed:
<script>
</script>
<noscript>
</noscript>
You will see many web documents with the noframes tag after the </frameset> -- and you will find websites stating very authoritatively that this is the correct use of the tag. This is not true.