Wijmo UI for the Web
hideOption Option
wijmo.wizard.wijwizard Namespace > options type : hideOption Option

Type: wijmo.wizard.ShowOption

The hideOption option defines the animation effects when hiding the panel content.

Syntax
$(function () {
    
    // Get value
    var returnsValue; // Type:  wijmo.wizard.ShowOption
    returnsValue = $(".selector").wijwizard("option", "hideOption");
    
    // Set value
    var newValue; // Type:  wijmo.wizard.ShowOption
    $(".selector").wijwizard("option", "hideOption", newValue);
        
});
var hideOption : ShowOption;
Example
//Set hide animation to blind and duration to 500.
$(".selector").wijwizard({
    hideOption: {fade: false, blind: true, duration: 500}
});
See Also

Reference

options type
wijwizard jQuery Widget