Default value: 'Close'
Specifies the text for the close button. Note that the close text is visibly hidden when using a standard theme.
Syntax
$(function () {
// Get value
var returnsValue; // Type: string
returnsValue = $(".selector").wijdialog("option", "closeText");
// Set value
var newValue; // Type: string
$(".selector").wijdialog("option", "closeText", newValue);
});
See Also