Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I tried to change the jQuery dialog title bar image using the below code but it does not work.

My dialog & title bar image look like this:

enter image description here

$("#dialog").dialog({
    title: '<img src="myImage.jpg" />'
});​​​​​​​​​​​

Any advise on how to change it? Thanks

share|improve this question
It should, what did you try? Does that image exist? – Adriano May 3 '12 at 12:23

2 Answers

up vote 2 down vote accepted

you have to add a CSS rule:

.ui-dialog-titlebar{
    background:url(http://www.elementalsurface.com/beech-wood.jpg);
}​

see the demo

share|improve this answer

Hiya working demo http://jsfiddle.net/V5NkV/ or http://jsfiddle.net/V5NkV/10/

Good read [link] : link: http://jqueryui.com/demos/dialog/

click on the click me in the demo above and you will see the dialog window with small image inside it.

It might be a coincidence that the image of your dialog is quite similar to sample here :) jQuery ui dialog image for the title

Anyhoo this code will give a very good idea how to do this.

I hope this helps you, have a nice one, cheerios !

Jquery code

var $Dialog_div;

function fnOpenDialog() {
    $Dialog_div = $('<div id=\'ThisDialog\'>Hello</div>').prependTo('body');

    $Dialog_div = $('#ThisDialog').dialog({
        autoOpen: true,
        draggable: true,
        resizable: true,
        title: 'Dialogimage<img src="http://dummyimage.com/100x30/000/fff&text=I\'m+an+image,+hi!" />',
        modal: true,
        stack: true,
        height: ($(window).height() * 0.95),
        width: ($(window).width() * 0.9),

        buttons: {

            'OK': function() {
                $Dialog_div.dialog('close');
            }

        }

    });

}

$('#ClickMe').click(fnOpenDialog);​

HTML

<!-- This is more than likely an Adobe issue where it thinks it should be in the front all the time no matter what however it is very annoying that you can't open a dialog over a PDF-->

<body>
    <div id='ClickMe'>Click here!</div>
    <br/>
    <div></div>
    <br/>

</body>


​
share|improve this answer
i want to use other image instead of gray title bar image...how to do it. – Thomas May 3 '12 at 12:35
Saweet @Thomas jsfiddle.net/V5NkV/10 or jsfiddle.net/V5NkV/5 AHHHAAA! got you, see below just change ..ui-dialog-titlebar and you can change title to image, have a nice one, cheerios! – Tats_innit May 3 '12 at 12:48

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.