1. $("#delete_dialog").dialog({
  2. resizable: false,
  3. modal: true,
  4. buttons: {
  5. 'Yes': function() {
  6.  
  7. },
  8. Cancel: function() {
  9. $(this).dialog('close');
  10. }
  11. }
  12. });