I am working on the manager theme (with HTML5, CSS, jQuery, jQuery UI, JsTree).
See
demo here (note: work in progress!).
I have replaced frames with iframes because they have been deprecated, however I can't resize them properly. I have tried with resizable (
http://jqueryui.com/demos/resizable/) but it is really buggy, here's why:
http://bugs.jqueryui.com/ticket/3176
You can test the buggy behaviour yourself, there is a small handle on the bottom right of the tree menu iframe.
The current size is declared with this simple css code:
#iframe-left {
width: 24%;
}
#iframe-right {
width: 76%;
}
I was thinking, maybe with jQuery UI slider (
http://jqueryui.com/demos/slider/) I could change the css width percentuage on the fly, this should work fine, although I don't know where to place the slider and if it would be user friendly. Do you have any suggestion or other solutions about resizing iframes?