I know frames are the bain of web existence but I have a friend with a frame built site that quit working for him recently. Long story short, his pages that are supposed to load inside the main content frame aren't working. One such header looks like this:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<link rel="shortcut icon" href="http://www.example.com/favicon.ico" />
<title>Example – Media</title>
<script type='text/javascript'>
<!--
if(self.location==top.location) top.location.replace('http://www.example.com/index.php?frame=' + self.location) ;
-->
</script>
<meta name="keywords" content="" />
<meta name="description" content="" />
</head>
It seems like pretty simple js, landing on this page should load it into the frame on the index page no? I'm having a hard time getting that to load itself into the frame.
I have nav links on the index page that target="content" (content being the frame name) and they work fine. Thanks in advance!
--apologies for frames--