Default value: null
Specifies the title of the dialog. If the value is null, the title attribute on the dialog source element will be used.
Syntax
$(function () {
// Get value
var returnsValue; // Type: string
returnsValue = $(".selector").wijdialog("option", "title");
// Set value
var newValue; // Type: string
$(".selector").wijdialog("option", "title", newValue);
});
See Also