There’s something wrong with my jQuery popup dialog. Only the image and the “close” hyperlink is appearing. I was thinking I would get a nice-looking UI as per this example: http://blog.nemikor.com/2009/04/08/basic-usage-of-the-jquery-ui-dialog/
Here is what is happening:

Here is my code:
theDiv.append('<div id="editDialog"></div>');
$("#editDialog").dialog({
height: 350,
width: 400,
modal: true,
position: 'center',
autoOpen:true,
title:'Hello World',
zIndex: 10000,
overlay: { opacity: 0.5, background: 'black'}
});
Thanks for any help here.
From the comments i understand that you should read this guide: jQuery UI – Getting Started