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 Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

JS and CSS frames

Status
Not open for further replies.
It uses css. (right click the page to view the source).

It uses code such as:

#framecontentLeft{
position: absolute;
top: 0;
left: 0;
width: 200px; /*Width of left frame div*/
height: 100%;
overflow: hidden; /*Disable scrollbars. Set to "scroll" to enable*/
background-color: navy;
color: white;
}

Then in hte html will be a div that uses that class.

I suppose what I'm looking for is some JS be able to dynamically change the dimentions to give the 'look' draggable behavior of old-school frames.

In this way, we can get most of the bens without most of the probs.

Matt
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top