Hi,
I have a html page which has two divisions(left and right). I want the division to be resizeable.
I should be able to increase the width of each of the divisions using a mouse (It should work like a split pane in java swing).
Is it possible to acheive this in html?
Create an element between the two divs that can detect a mouse click and drag. When the mouse is released, use the information in the Event instance about the mouse location to determine how to resize the divs.