Hi,
I want to make a web page with a number of iframes, that hide/unhide in the same position.
Does anybody know how i can switch between these iframes?
By switching (and not by going straight to the iframes address), i don't loose the navigation of each iframe.
Thank you in anticipation.
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>iframes test</title>
<SCRIPT language=javascript type="text/javascript">
function showhideiframe ()
{
iframe.style.display="block"?????
iframe.style.display="none" ?????
}
</SCRIPT>
</head>
<body>
<A HREF="" onClick="showhideiframe()">iframe1</a> -
<A HREF="" onClick="showhideiframe()">iframe2 </a>-
<A HREF="" onClick="showhideiframe()">iframe3</a>
<iframe name="iframe1" id="iframe1" src=" frameborder="0" border="0" style="display:block"></iframe>
<iframe name="iframe2" id="iframe2" src=" frameborder="0" border="0" style="display:none"></iframe>
<iframe name="iframe3" id="iframe3" src=" frameborder="0" border="0" style="display:none"></iframe>
</body>
</html>
I want to make a web page with a number of iframes, that hide/unhide in the same position.
Does anybody know how i can switch between these iframes?
By switching (and not by going straight to the iframes address), i don't loose the navigation of each iframe.
Thank you in anticipation.
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>iframes test</title>
<SCRIPT language=javascript type="text/javascript">
function showhideiframe ()
{
iframe.style.display="block"?????
iframe.style.display="none" ?????
}
</SCRIPT>
</head>
<body>
<A HREF="" onClick="showhideiframe()">iframe1</a> -
<A HREF="" onClick="showhideiframe()">iframe2 </a>-
<A HREF="" onClick="showhideiframe()">iframe3</a>
<iframe name="iframe1" id="iframe1" src=" frameborder="0" border="0" style="display:block"></iframe>
<iframe name="iframe2" id="iframe2" src=" frameborder="0" border="0" style="display:none"></iframe>
<iframe name="iframe3" id="iframe3" src=" frameborder="0" border="0" style="display:none"></iframe>
</body>
</html>