I am having tough time figure out how to change background color of jQuery UI Dialog.
jQuery UI Dialog
I\'ve seen many reference how to change/remove title bar but not <
If you want to target a specific dialog you can do it this way:
$('#yourDialog').dialog( { autoOpen: false, open: function(e) { $(e.target).parent().css('background-color','orangered'); } });