You are on page 1of 1

<html>

<head>
</head>
<body>
<a href="javascript:doIt(1)">BEFORE</a><BR>
<iframe name=fm1 border=1 width=200 height=200 src="http://www.js-examples.com">
</iframe>
<BR>AFTER
<BR>
NOTE: iframe is to be used in IE only.
<script>
function doIt(_v)
{
if (_v==1)
{
document.all.fm1.src="http://www.js-examples.com/consult/";
}
}
</script>
<BR><center><a href='http://www.js-examples.com'>JS-Examples.com</a></center>
</body>
</html>
<!-This file retrieved from the JS-Examples archives http://www.js-examples.com 100
0s of free ready to use scripts, tutorials, forums.
Author: JS-X - http://www.js-x.com/
-->

You might also like