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