I\'m using the code below to create a jQuery dialog box. By default there is a close icon on title bar, but I want to add some of the other icons in title bar as well for di
You can do that by adding some HTML code to title bar when dialog opened.
$("document").ready(function () { $("#dialog").dialog({ title: "Dialog Title", height: 400, width: 500, open: function(event, ui){ $(this).parent().find('.ui-dialog-titlebar').append('Some HTML'); } }); });