I'm trying to generalize some slider code so that it will work with a few input + slider combinations.
I have everything essentially working - slide the slider, the input value updates or enter a number in the input, the slider moves to the proper location.
However, I'm having trouble initializing the sliders from the default values of the inputs. Here's what my code looks like:
Javascript
$(".slider").slider({
min: 0,
max: 5,
value: $(this).parent().find(".inputNumber").val(),
step: 0.25,
slide: function (event, ui) {
$(this).parent().find(".inputNumber").val(ui.value);
}
});
HTML
<div class="inputWrap hidden">
<input class="mini inputNumber" type="text" value="0.5">
<div class="slider"></div>
</div>