Link to home
Start Free TrialLog in
Avatar of phpdotnet
phpdotnet

asked on

Are there any script like this : SplitPane ?

http://www.randelshofer.ch/quaqua/guide/jsplitpane.html

Can anyone please tell me are there any kind of standalone Javascript which does the function in this site ? Thank you very much.
Avatar of Michel Plungjan
Michel Plungjan
Flag of Denmark image

<html>
  <head>
  <title></title>
  </head>
  <frameset cols="40%,*">
    <frame name="left" src="about:blank" />
    <frameset rows="50%,*">
      <frame name="topRight" src="about:blank" />
      <frame name="BottomRight" src="about:blank" />
    </frameset>
  </frameset>
</html>
Here with a thicker border

<html>
  <head>
  <title></title>
  </head>
  <frameset cols="40%,*" border="10">
    <frame name="left" src="about:blank" />
    <frameset rows="50%,*" border="10">
      <frame name="topRight" src="about:blank" />
      <frame name="BottomRight" src="about:blank" />
    </frameset>
  </frameset>
</html>
Avatar of phpdotnet
phpdotnet

ASKER

Aw but I just don't want to use Frame, can you provide another solution please ?
ASKER CERTIFIED SOLUTION
Avatar of Michel Plungjan
Michel Plungjan
Flag of Denmark image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial