How do I remove/hide the \"Ok\" button dynamically using jquery?
$(\'#dialog-save\').dialog({ autoOpen: false, modal: false,
Juste like this won't show the button :
$('#dialog-save').dialog({ autoOpen: false, modal: false, draggable: true, width: 275, height: 175 } });
And if you want to remove them after you have shown the dialog Maybe something like this;
How can I disable a button in a jQuery dialog from a function?