Is there a way to modify the background color of a jQuery UI dialog titlebar? Here is the code I am using:
jQuery("#divId").dialog({
title: 'Information'
});
jQuery("#divId .ui-dialog-titlebar").css("background-color", "red");
For my application, it will only be used on IE. I have attempted to inspect the titlebar and footer CSS properties using IE developer tools, but it seems to only recognize the CSS properties of ui-dialog-content. Any suggestions on how to approach this issue?