Reputation: 810
Trying to change the min and Max value of the Slider defined in Html Code
<input type="range" id="slider" min="0" max="100" value="50" />
at runtime like the following :
$( "#slider" ).slider( "option", "min", 40 );
$( "#slider" ).slider( "option", "max", 90 );
But its not working, Kindly help . No error . Also tried destroy() and refresh() , but no change.
Upvotes: 2
Views: 2715