How to trigger jquery Resizable resize programmatically?

后端 未结 5 1035
太阳男子
太阳男子 2020-12-06 00:21

I have a div element which is made jquery Resizable. It has alsoResize option set, so other elements resize simultaneously.

What I want to do, is to set size of this

5条回答
  •  旧巷少年郎
    2020-12-06 00:27

    $(".yourWindow").each(function(e) {
        $(this).height($(this).find(".yourContent").height());
    });
    

    And the same with the width.

提交回复
热议问题