I don't really understand what you're trying to do with History, but the code below will let you adjust the size of an iframe. (Note the one line jQuery in <script> tag.)
Code:
<html>
<head>
</head>
<script type="text/javascript" src="http://code.jquery.com/jquery-latest.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
// dimensions are in pixels
$("#test").height(500).width(500);
});
</script>
<style>
iframe
{
width:100%;
height:100%;
border:1px solid;
}
</style>
<body>
<div id="test">
<iframe src="http://www.faithandpromise.com"></iframe>
</div>
</body>
</html>
Bookmarks