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

Type: wijmo.wizard.ShowOption

The showOption option defines the animation effects when showing the panel content.

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

Reference

options type
wijwizard jQuery Widget