Hello. There are radio buttons of the form:
<input type="radio" name="question_1" value="1"> А) Белый<br>
I get access to the group through
var group = document.getElementsByName('question_1');
and then I need to take the text after the input.
I take any button through group [0], but how to get the text after it?