JQuery Draggable and Resizeable over IFrames (Solution)

前端 未结 6 1191
野性不改
野性不改 2021-02-07 02:55

I recently ran into some troubles using JQuery Draggable and Resizable plugins. Looking for solutions, i found some very fragmented code in many different places and finally fil

6条回答
  •  孤城傲影
    2021-02-07 03:18

    I first also went like Byron Cobb's solution, but as I'm using a dialog element and the Iframe isn't needed when the dialog is shown (it's a saving dialog), I liked using the modal option:

    $('#savingDialog').dialog({
        modal: true
    });
    

提交回复
热议问题