Is it possible to add icons to the buttons on a jQuery UI Dialog? I\'ve tried doing it this way:
$(\"#DeleteDialog\").dialog({ resizable: false, hei
also you can add id or other attr to button, like this:
buttons:[ { text: "Close", id: "closebtn", click: function() { $(this).dialog("close"); } } ], open: function() { $("#closebtn").button({ icons: { primary: "ui-icon-close" } }); }