dialogClass option in jQuery UI Dialog has been deprecated in favor of the classes option.
Here's how to use the classes option to add a custom class to your dialog: JavaScript
$( "#dialog" ).dialog({
classes: {
"ui-dialog": "my-dialog-class"
}
});