サンプルコード
<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/