На странице есть произвольное количество групп радио-кнопок. Каждая группа состоит из 3-х кнопок. Вот пример кода из 4-х групп:
<input type="radio" name="code[1]" value="0">
<input type="radio" name="code[1]" value="-1" checked>
<input type="radio" name="code[1]" value="1">
<input type="radio" name="code[2]" value="0">
<input type="radio" name="code[2]" value="-1" checked>
<input type="radio" name="code[2]" value="1">
<input type="radio" name="code[3]" value="0">
<input type="radio" name="code[3]" value="-1" checked>
<input type="radio" name="code[3]" value="1">
<input type="radio" name="code[4]" value="0">
<input type="radio" name="code[4]" value="-1" checked>
<input type="radio" name="code[4]" value="1">
По умолчанию выбраны кнопки со значением -1. Можно ли с помощью javascript'а изменить значения checked у всех? Чтобы оно стало, скажем у всех кнопок с value 0 или 1?