Что-то ничего у меня не получается. Помогите нейти ошибку.
Функция
function accepting()
{
for(var k=1;k<id.length;k++)
{
alert(k);
document.getElementById("check"+id[k]).nextSibling.style.color='green';
}
}
Вызов
<input type="button" onclick="accepting()" id="accept" value="Принять">
Чекбоксы
<input type='checkbox' id="check1" name="file1" value="61"/><label for="check1" style="color:blue">file1</label><br>
<input type='checkbox' id="check2" name="file2" value="62"/><label for="check2" style="color:blue">file2</label><br>
<input type='checkbox' id="check3" name="file3" value="63"/><label for="check3" style="color:blue">file3</label><br>
<input type='checkbox' id="check4" name="file4" value="64"/><label for="check4" style="color:blue">file4</label><br>
<input type='checkbox' id="check5" name="file5" value="65"/><label for="check5" >file5</label><br>
ОгнеЖук ошибок не выдает. Но цвета все равно не меняются.