Forum Moderators: open
The code below almost works except page abc opens in frame one and I'd like it to open in frame two. Help!
<html>
<head>
<title>frame one</title>
<script language="javascript">
function open_page_abc_in_frame_two()
{window.location.href="page_abc.htm"; target="frame_two";}
setTimeout("open_page_abc_in_frame_two()", 5000)
</script>
</head>
<body>
<p>Page abc will automatically appear in frame two in 5 seconds</p>
</body>
</html>
This assumes all content is coming from same domain, else security will step in.