Reputation: 1109
I have made a DIV resizable in jQuery, like this:
$("#myDiv").resizable();
Simple,
Now is there a way make it 'un' resizable, and to remove this functionality all together?
Regards.
Upvotes: 19
Views: 13779
Reputation: 53246
You want the destroy function:
$('#myDiv').resizable('destroy');
Upvotes: 41