Re: Resize frame problem??
[ Follow Ups ] [ Post Followup ] [ Intranet eXchange ] [ IDM Home ]
Posted by Shuli on August 21, 2001 at 10:1:33:
In Reply to: Resize frame problem?? posted by Robert on April 19, 2001 at 6:39:35:
Put this function on top of your frame set page:
<scrip>
function fnResizeF(intWidth)
{
top.document.all("mainframe").rows = intWidth+"%, *";
}
</script>
Then you can it from any of the frame page using:
<script>
top.fnResizeF(95);
</script>
Follow Ups:
[ Follow Ups ] [ Post Followup ] [ Intranet eXchange ] [ IDM Home ]