Reload iframe to another url : iframe « HTML Tags « JavaScript Tutorial






<html>
<head>
<title>iFrame</title>
</head>
<body>
<script type="text/javascript">
function handleResponse(choice) {
  var pick = frames["MyFrame"];
  pick.document.writeln(choice);
}
</script>
<iframe id="MyFrame"
  name="MyFrame"
  style="width:800px; height:800px; border: 0px"
  src="http://www.java2s.com"></iframe>

<p>
<a href="" onclick="parent.MyFrame.location.replace('1.html');return false">choice 1</a><br />
<a href="" onclick="parent.MyFrame.location.replace('2.html'); return false">choice 2</a><br />
</p>
</body>
</html>








21.16.iframe
21.16.1.Reload iframe to another url