I have one frame on my websit ewhich works great (thank you).
But, if people type in the URL of one of my pages (as opposed to clicking on a link) it does not appear in the frame.
I have been experimenting with Javascript to change this, but inserting the below code into the page always makes the frame's start URL open in the frame instead. Any ideas?
<SCRIPT TYPE="text/javascript">
<!--
if (window == top) {
top.location.replace("FRAMESET PAGE NAME HERE"); } //-->
</SCRIPT>
But, if people type in the URL of one of my pages (as opposed to clicking on a link) it does not appear in the frame.
I have been experimenting with Javascript to change this, but inserting the below code into the page always makes the frame's start URL open in the frame instead. Any ideas?
<SCRIPT TYPE="text/javascript">
<!--
if (window == top) {
top.location.replace("FRAMESET PAGE NAME HERE"); } //-->
</SCRIPT>
Comment