Sliders

Home

Sliders

The slider plugin has the following methods:

enable enable a disabled select

$('select').slider('enable');			
				
disable disable a select.

$('select').slider('disable');			
				
refresh update the slider
This is used to update the slider to reflect the native input element's value. Also, if you pass a true argument you can force the rebuild to happen.

//refresh value			
$('select').slider('refresh');

//refresh and force rebuild
$('select').slider('refresh', true);