端くれプログラマの備忘録 jQuery UI [jQuery UI] 基本メモ: Dialog

[jQuery UI] 基本メモ: Dialog

サンプルコード

<button>open</button>
<div id="msg">hello</div>
$('button').click(function() {
    $('#msg').dialog('open');
})
$('#msg').dialog({
    autoOpen: false,
    buttons: {
        'OK': function() {
            $(this).dialog('close');
        }
    },
    title: 'Title',
    modal: true,
})

参考サイト

Dialog | jQuery UI
https://jqueryui.com/dialog/