そのドキュメントをロードするために新しい GET を発行せずに、ブラウザ ウィンドウ (_top フレーム) のコンテンツを iframe にロードされたドキュメントに置き換えることは可能ですか?
このようなもの:
<html>
<head>
<script type="text/javascript" language="JavaScript">
$(document).ready(function() {
  $("#link").click(function() {
    // should present in the browser window the content of the iframe WITHOUT reload
    // even preserve javascript/head code
    $(document).html($("#frameDestination").html());
  });
});
</script>
</head>
<body>
<a id="link" href="#">full window</a>
<iframe id="frameDestination" src="http://www.some-random-site.com" width="900px" height="500px"></iframe>
</body>
</html>