Default value: true
The stack option allows the dialog to stack on top of other dialogs, causing it to move to the front of other dialogs when it gains focus.
Syntax
$(function () {
// Get value
var returnsValue; // Type: boolean
returnsValue = $(".selector").wijdialog("option", "stack");
// Set value
var newValue; // Type: boolean
$(".selector").wijdialog("option", "stack", newValue);
});
See Also