wijmo.wizard.wijwizard Namespace > options type : hideOption Option |
The hideOption option defines the animation effects when hiding the panel content.
Javascript (Usage) | |
---|---|
$(function () { // Get value var returnsValue; // Type: any returnsValue = $(".selector").wijwizard("option", "hideOption"); // Set value var newValue; // Type: any $(".selector").wijwizard("option", "hideOption", newValue); }); |
Javascript (Specification) | |
---|---|
|
//Set hide animation to blind and duration to 500. $(".selector").wijwizard({ hideOption: {fade: false, blind: true, duration: 500} });