Default value: true
If set to true, the dialog will be draggable by the title bar. Requires the jQuery UI Draggable widget to be included.
Syntax
$(function () {
// Get value
var returnsValue; // Type: boolean
returnsValue = $(".selector").wijdialog("option", "draggable");
// Set value
var newValue; // Type: boolean
$(".selector").wijdialog("option", "draggable", newValue);
});
See Also