Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Westi on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to put a Splitter on a web page (like MSDN)? 2

Status
Not open for further replies.

CubeE101

Programmer
Nov 19, 2002
1,492
US
How do you place a splitter between frames on a web page, such as the one used on:

Is it done with CSS, or Script, or a combination of the two?

Thanks in Advance,
-Josh

Visit My Site
PROGRAMMER: (n) Red-eyed, mumbling mammal capable of conversing with inanimate objects.
 
Hopefully you can do better than the one on MSDN as it is not cross-browser compatible. You could just use a resizeable frameset to achieve the effect.

Adam

¡ph ¥0u c4n r34d d¡5 ¥0u n33d 70 g37 l4¡d
 
>>You could just use a resizeable frameset to achieve the effect.

...HOW?

example... link... ???

All I got with a google search is how to make you frames non resizable...

Visit My Site
PROGRAMMER: (n) Red-eyed, mumbling mammal capable of conversing with inanimate objects.
 

A standard frameset will be sizeable, AFAIK, if you do not specify noresize.

Dan


[tt]D'ya think I got where I am today because I dress like Peter Pan here?[/tt]
[banghead]

 
OK, gotcha!

You don't have to add extra code to handle the resizing...

(hmmm... I guess all the frames I have used in the past had noresize in them or something... odd)

Thanks...

Visit My Site
PROGRAMMER: (n) Red-eyed, mumbling mammal capable of conversing with inanimate objects.
 
Yup... Take the following:

Code:
<html>
<head></head>

<frameset cols="50%, 50%">
	<frame></frame>
	<frame></frame>
</frameset>
</html>

It works fine (and allows resizing) in all the browsers I tested in - IE6, NN7, FF1, Opera7.

Dan

[tt]D'ya think I got where I am today because I dress like Peter Pan here?[/tt]
[banghead]

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top