Custom Resizable Handles in JQuery UI

后端 未结 6 1530
礼貌的吻别
礼貌的吻别 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:30

    in 2020, this simple solution works..

    $('.your-class').each(function (index) {
            $(this).resizable({
                handles: { e: $(this).find('.child-div .handle-resize-class') },
    

提交回复
热议问题