: I've tried what you said, but can't get it too work, do you have a script sample?
:
Hi there,
Ok here goes...
<html>
<head>
<script language="JavaScript">
function resize() {
document.getElementById("brad").style.width = "100px";
document.getElementById("brad").style.height = "100px";
}
</script>
</head>
<body>
This is the main window.<p>
<iframe src="test2.html" width="500px" height="200px" id="brad"></iframe><p>
<a href="javascript:resize();">Click here to resize to 100px by 100px</a>
</body>
</html>
HTH
Bradley q:)