views:

45

answers:

2

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
thanks a lot... dialog.. looks nice :D cheers mate
Harsha M V
Glad I could help :-)
ILMV
+1  A: 

You can use the resize property

    div.resize { width: 100px; 
                 height: 100px; 
                 border: 1px solid; 
                 resize: both; 
                 overflow: auto; 
               }
Barry
Thanks a lot buddy
Harsha M V