Search code examples
jquerydialogthemestitlebarbackground-color

jQuery dialog theme and style


How do I change the background color of the title bar of a jQuery dialog?

I have looked at the themeroller but it does not seem to work for me.

Thanks


Solution

  • I do this way (adding "ui-state-error" style for header):

    <script type="text/javascript">
                $(function () {
                    $("#msg").dialog({
                        open: function () {
                            $(this).parents(".ui-dialog:first").find(".ui-dialog-titlebar").addClass("ui-state-error");
                        }
    
                    });
    
                });
            </script>