Default value: []
Specifies which buttons should be displayed on the dialog. The context of the callback is the dialog element; if you need access to the button, it is available as the target of the event object.
Syntax
$(function () {
// Get value
var returnsValue; // Type: []
returnsValue = $(".selector").wijdialog("option", "buttons");
// Set value
var newValue; // Type: []
$(".selector").wijdialog("option", "buttons", newValue);
});
See Also