Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

does any one know if there is an example available for sliding panels in jquery? If so, can someone send me a link? This is what I want to accomplish.

On my main screen I want to have three divisions. One right column that covers half the screen and then the left column divided in two rows. I want to expand and/or shrink the right column and/or left column and/or the top row in the left column and/or the bottom row in the left column. Think og it as an IDE with the left side of the coding area and right side as project explorer and the properties. The coder would like to see any three of the sections at once or would like to expand each working area.

I am looking for a jquery solution for such! Thanks

share|improve this question
Sooo... you want to reinvent frames in jQuery? – SpliFF Jan 29 '12 at 1:02

2 Answers

up vote 7 down vote accepted
+25

Sounds like the way jsfiddle.net works

This is available as a plugin. http://docs.jquery.com/UI/Resizable

You could also use the jQuery splitter plugin: http://www.methvin.com/splitter/

Also see (2011): http://jcubic.wordpress.com/2011/03/06/jquery-splitter-split-container/

Flexigrid is a new (2012) option: http://flexigrid.info/

share|improve this answer

The most robust solution for this is to use the jQuery layout plugin. You can find it here: http://layout.jquery-dev.net/

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.