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>