I\'ve been attempting to create a resizable textbox (ASP.NET multiline TextBox / HTML textarea) and use JQuery UI to make it resizable, but seem to
TextBox
textarea
I had a similar issue but my need was to set the hadlers dynamically to multiple elements:
$.each($(".imagecontainer"),function() { $(this).resizable({ handles: {se: $(this).closest(".spaciator").find(".ui-resizable-se")} }); };