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

Default value: false

An option that determines whether to cache emote wijwizard content.

Syntax
$(function () {
    
    // Get value
    var returnsValue; // Type:  boolean
    returnsValue = $(".selector").wijwizard("option", "cache");
    
    // Set value
    var newValue; // Type:  boolean
    $(".selector").wijwizard("option", "cache", newValue);
        
});
var cache : boolean;
Remarks
Cached content is being lazy loaded, for example only and only once for the panel is displayed. Note that to prevent the actual Ajax requests from being cached by the browser, you need to provide an extra cache: false flag to ajaxOptions.
See Also

Reference

options type
wijwizard jQuery Widget