Reputation: 6353
I have a two panel, one left and second right in my html page. Left panel is collapsible. I want that panel to adjustable too. How to achieve this using jQuery?
Upvotes: 0
Views: 705
New plug-in of JQuery contains method $("#resizable").resizable();, We need to add UIjquery.js file along with jquery.js.
("#resizable").resizable();
This link has example of re-sizable.
Upvotes: 2