Icons generally visible on buttons. As I have done in the below snippet.
$('#custom-alert').dialog({
title: title,
modal: true,
width: 600,
height: 320,
closeText: '',
buttons: [{
icon: "ui-icon-info",
click: function () {
$(this).dialog('destroy').remove()
}
}]
});
Top comments (0)