More jscript - frames

  • Thread starter Thread starter Graeme
  • Start date Start date
G

Graeme

Hello

I have two frames, vertically separated at say 50%. Could I have some hints
as to jscript function to increase left frame to 90% (reduce right-hand
frame to 10%?).

Thanks
Graeme
 
Something like

document.getElementById("leftFrameId").style.width="90%";
document.getElementById("rightFrameId").style.width="10%";

should work.
 
Something like

document.getElementById("leftFrameId").style.width="90%";
document.getElementById("rightFrameId").style.width="10%";

should work.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top