I\'d like to modify the sliders on-the-fly. I tried to do so by using
$(\"#slider\").slider(\"option\", \"values\", [50,80]);
This call wil
Finally below works for me
$("#priceSlider").slider('option',{min: 5, max: 20,value:[6,19]}); $("#priceSlider").slider("refresh");