How to create a floating box which can be expanded using an expand handle on the right bottom corner. The expanding should occur both vertical and horizontally.
+4
A:
Perhaps you should look at the jQuery UI resizable and draggable, it does exactly what you want it to do.
Edit
In fact looking over your question again the jQuery UI dialog may even be what you're looking for.
ILMV
2010-06-28 08:40:18
thanks a lot... dialog.. looks nice :D cheers mate
Harsha M V
2010-06-29 10:57:46
Glad I could help :-)
ILMV
2010-06-29 10:58:24
+1
A:
You can use the resize property
div.resize { width: 100px;
height: 100px;
border: 1px solid;
resize: both;
overflow: auto;
}
Barry
2010-06-28 08:41:56