$.linkedSliders.setDefaults(settings) | LinkedSliders object |
Update the default instance
settings to use with all linked sliders instances.
settings (object) is the collection of new settings to apply. |
$(selector).linkedSliders('option', options) | jQuery object |
Update the settings
for the linked instance(s) attached to the given sliders.
options (object) the collection of new settings.
$(selector).linkedSliders('option',
{total: 300, policy: 'first'});
Since 1.1.0 - previously you used the 'change' command. |
$(selector).linkedSliders('option', name, value) | jQuery object |
Update a particular setting
for the linked instance(s) attached to the given sliders.
name (string) the name of the setting to change;
value (any) the new value of that setting.
$(selector).linkedSliders('option', 'total', 300);
Since 1.1.0 - previously you used the 'change' command. |
$(selector).linkedSliders('option', name) | object or any |
Retrieve one or all of the current
settings
for the first linked instance attached to the given sliders.
name (string, optional) the name of the setting to retrieve;
omit for all settings.
var settings = $(selector).linkedSliders('option');
var total = $(selector).linkedSliders('option', 'total');
Since 1.1.0 - previously you used the 'settings' command. |
$(selector).linkedSliders('destroy') | jQuery object |
Remove the linked sliders functionality from the given sliders. |