Reputation: 3975
I like the resizable plugin by JQuery ui: http://jqueryui.com/demos/resizable/
I want to implement it in my script, but to do that I need the plugin to re-size the element by me dragging any of the four corners of it not just the top and left one as I can see in the demo. How can i do this?
Upvotes: 2
Views: 369
Reputation: 57968
reading the doc(which you liked to) helps:
$( ".selector" ).resizable({ handles: "all" });
Upvotes: 2