Cookie を使用して、セッションごとに 1 回モーダル ウィンドウを表示しようとしています。以下のコードでは、セッションごとに 1 回アラート ボックスが正常に表示されますが、モーダル コードを配置すると機能しません。
if ($.cookie('modal') != 'shown') {
$.cookie('modal', 'shown');
alert("message");
}
alert("message") の代わりに、以下のモーダル コードを配置しています。
$("#dialog-modal").dialog({
height: 750,
width: 1045,
modal: true,
resizable: false,
draggable: false
});