jQuery - Dialog auto-resize on dynamic content and maintain center position

前端 未结 6 602
梦谈多话
梦谈多话 2020-12-30 13:51

I have a jQuery Dialog box and Am loading the content using Ajax.

The Dialog is initially in the center of the page. The problem , here is , Since its a dynamic con

6条回答
  •  伪装坚强ぢ
    2020-12-30 14:06

     Use this
        modal: true,
        width: '80%',
        autoResize:true,
        resizable: true,
        position: {
            my: "center top", 
            at: "center top", 
            of: window
        }
    

    order must be same

提交回复
热议问题