I understand that <frameset> and <frame> tag are becoming deprecated. Is there a way to emulate resizable frames? What I want is a narrow separator separating the area either horizontally or vertically, which is movable by the user so that when one side of it becomes smaller, the other side becomes larger, and vice versa. I do not want to fill in each frame with an html page like the conventional frame, but instead with some DOM materials.
I know that CSS3 has resize attribute, but that controls only the size of itself. I am not sure if this is to be used for the solution.
I don't particularly prefer using JavaScript, but I am not excluding the possibility of using it if necessary.

framesaren't becoming deprecated IF you use the correct HTML4.01 doctype (same foracronymelement in HTML4.01 / XHTML1.0 vs. HTML5 btw). Now I obviously won't use that for a client's project but maybe still for a technical documentation (or maybe not, as I wouldn't care about IE6/7 in this case and IE8 has OK support of things likeposition:fixedfor a sidebar) – FelipeAls Sep 23 '12 at 8:47