Jquery Dialog Box with overlay background
I am using jquery dialog box abut not able to see 开发者_如何学Cthe background overlay. code is below
$("#dialog").dialog(); I'm in a dialogI am new to jquery, please help me out, much appreciated :)
If you want to see overlay, you have to call dialog with modal: true
parameter:
$("#dialog").dialog({ modal: true });
精彩评论