Sure, this can be done by giving a name to the object containing the parameters, so you can access it explicitly, and change its "remotecontent" parameter based on some variable. For example:
Code:
var myparameters={
gliderid: "gliderish", //ID of main glider container
contentclass: "glidecontent", //Shared CSS class name of each glider content
togglerid: "p-select", //ID of toggler container
selected: 0, //Default selected content index (0=1st)
persiststate: false, //Remember last content shown within browser session (true/false)?
speed: 500, //Glide animation duration (in milliseconds)
direction: "rightleft", //set direction of glide: "updown", "downup", "leftright", or "rightleft"
autorotate: false, //Auto rotate contents (true/false)?
autorotateconfig: [3000, 2] //if auto rotate enabled, set [milliseconds_btw_rotations, cycles_before_stopping]
}
myparameters.remotecontent=page
featuredcontentglider.init(myparameters)
Bookmarks