开发者

adding title to jqdialog confirm box

How开发者_运维百科 can i add a title to a jqdialog confirm box? I have a message that needs to displayed in the center and the title should be displayed on top. Currently i am getting my message displayed on top with no default title.


You can add a title to the title attribute of the div containing your dialog

<div class="demo">  

    <div id="dialog-modal" title="Whatever you title is....">     

        <p>Blah blah blah</p>
    </div>

</div>


$(document).ready(function() {

    $("#dialog-modal").dialog({
        height: 140,
        modal: true
    });
});

Example here

0

上一篇:

下一篇:

精彩评论

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

最新问答

问答排行榜