Simple. Here is some code for the outer page:
Code:
<html>
<head>
<title>
</title>
<script language="JavaScript">
setInterval("check_for_change()", 100);
function check_for_change()
{
if(iframe.document.jumpy.example.selectedIndex==2)
{
window.location="http://www.google.com";
}
if(iframe.document.jumpy.example.selectedIndex==3)
{
window.location="http://www.yahoo.com";
}
if(iframe.document.jumpy.example.selectedIndex==4)
{
window.location="http://www.altavista.com";
}
}
</script>
</head>
<body>
<iframe src="your_src.html" name="ifram" id="ifram" width="500" >SORRY! IFRAMES DON'T WORK IN YOUR INTERNET BROWSER!</iframe>
</body>
</html>
That should do it.
-magicyte
Bookmarks