Default value: true
If set to true, the dialog will automatically open upon initialization. If false, the dialog will stay hidden until the open() method is called.
Syntax
$(function () {
// Get value
var returnsValue; // Type: boolean
returnsValue = $(".selector").wijdialog("option", "autoOpen");
// Set value
var newValue; // Type: boolean
$(".selector").wijdialog("option", "autoOpen", newValue);
});
See Also