开发者

JQuery Dialog and Background Freezing

I would like to freeze the background while a jquery dialog box appears. I am using the code below for dialog box.

$("#divGroup").dialog

({

        autoOpen: false,
        modal: false,
        height: 450,
        width: 450,
        resizable开发者_如何学运维: false,
        position: [500, 200],

});


set the modal property to true.

 autoOpen: false,
        modal: true,
        height: 450,
        width: 450,
        resizable: false,
        position: [500, 200],
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜