Im a little stuck and wondering if anyone can spot why? its actually not generating the sliders at all so a little lost.
JSFiddle here: http://jsfiddle.net/DmDkp/
HTML
<div class="markup scoreSlide">
<input type="text" id="" class="scoreID" value="" />
<div class="scoreSlider"></div>
</div>
<div class="markup scoreSlide">
<input type="text" id="" class="scoreID" value="" />
<div class="scoreSlider"></div>
</div>
<div class="markup scoreSlide">
<input type="text" id="" class="scoreID" value="" />
<div class="scoreSlider"></div>
</div>
JS
jQuery(document).ready(function() {
jQuery('.scoreSlide').each(function(){
jQuery(this).find('.scoreID').slider({
animate: true,
range: "min",
value: value: jQuery('.scoreID').val(),
min: 1,
max: 5,
step: 1,
slide: function(event, ui) {
jQuery(this).find('.scoreSlider').html(ui.value);
},
});
});
});
value: value: jQuery('.scoreID').val(),