i am using below code for dialog box
$("#dialogSave").dialog({
autoOpen: false,
closeOnEscape: true,
resizable: false,
modal: true,
width: 350,
height: 115,
buttons: {
Ok: onSaveOk,
Cancel: function() { $(this).dialog("close"); }
}
});
Here i want to place text(bottom left) in buttons place. How to do that. Those buttons are generating by jQuery library.
Above part, i can add, but i am looking in buttons row.
Advance Thanking you.