Wijmo UI for the Web
url Method
wijmo.wizard Namespace > wijwizard type : url Method
The zero-based index of the panel of which its URL is to be updated.
A URL the content of the panel is loaded from.
The url method changes the url from which an Ajax (remote) panel will be loaded.
Syntax
$(function () {
    var returnsValue; // Type:  wijmo.wizard.wijwizard
    // Parameters
    var index; // Type:  number
    var url; // Type:  string
    
    returnsValue = $(".selector").wijwizard("url", index, url);
});
function url( 
   index : number,
   url : string
) : wijwizard;

Parameters

index
The zero-based index of the panel of which its URL is to be updated.
url
A URL the content of the panel is loaded from.
Example
// Change the url content of second step.
$("#wizard").wijwizard("url", 1, "http://wijmo.com/newurl.html");
See Also

Reference

wijwizard type
wijwizard jQuery Widget