Wijmo UI for the Web
autoHide Option
wijmo.popup.wijpopup Namespace > options type : autoHide Option

Default value: false

Determines whether to automatically hide the popup when clicking outside the element.

Syntax
$(function () {
    
    // Get value
    var returnsValue; // Type:  boolean
    returnsValue = $(".selector").wijpopup("option", "autoHide");
    
    // Set value
    var newValue; // Type:  boolean
    $(".selector").wijpopup("option", "autoHide", newValue);
        
});
var autoHide : boolean;
Remarks
If true, the popup will be automatically hidden when another element is selected. If false (default), the popup will remain visible until hidden with the hide method.
See Also

Reference

options type
wijpopup jQuery Widget