Can any one please tel me that how to set background color of title bar of popup window in jquery.
Title text is "Email Options".
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"));
}