Custom Resizable Handles in JQuery UI

后端 未结 6 1537
礼貌的吻别
礼貌的吻别 2020-12-08 16:40

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

6条回答
  •  佛祖请我去吃肉
    2020-12-08 17:23

    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")}
                    });
                };
    

提交回复
热议问题