jqueryでポップアップウィンドウのタイトルバーの背景色を設定する方法を教えてください。
タイトル テキストは「メール オプション」です。
function showEmailDlg() {
var dlg = $('#dlgEmail').dialog(
{
draggable: true,
position: 'center',
modal: true,
width: 1028,
height: 568,
title: 'Email Options',
resizable: false
}
);
dlg.parent().appendTo($("form:first"));
}