Появился такой вот вариант исполнения данной задачи, однако он на чистом JS, хотелось бы как тут
http://jsbin.com/uzINaWe/1, кто знает что нужно для этого сделать?)
<script>
function checkradio() {
var d =0,s;
var polzunok = document.getElementById("polzunok");
var radios = document.getElementsByName('alc');
s = parseInt(polzunok.max);
d = (index1 <= s) ? 1 : -1;
index1+=d;
alert(index1);
radios[index1].checked = true;
}
onload = function ()
{
document.getElementById ('polzunok').oninput = function ()
{document.getElementsByName ('alc') [this.value].checked = 1}
}
</script>
<form action="handler.php">
<div id = "radios">
<input type="radio" checked name="alc" value = "0">
<input type="radio" name="alc" value = "1">
<input type="radio" name="alc" value = "2">
<input type="radio" name="alc" value = "3">
<input type="radio" name="alc" value = "4">
<input type="radio" name="alc" value = "5">
<input type="radio" name="alc" value = "6">
<input type="radio" name="alc" value = "7">
<input type="radio" name="alc" value = "8">
<input type="radio" name="alc" value = "9">
<input type="radio" name="alc" value = "10">
</div>
<input id = "polzunok" type="range" min="0" max="10" step="1" value="0">
</form>