I am having an issue with before_next_page and pre-filled radio buttons.
Essentially, I have a binary choice with the following radio buttons, where we pre-checked one of the two choices in HTML. However, if the subject clicks next, the choice is recorded as "none" in player variables.
<input type="radio" name="{{
t.id }}" value="0" checked onclick="
sendPref(this)">
<input type="radio" name="{{
t.id }}" value="1" onclick="
sendPref(this)">
Is there a way to remedy this? I.e., have "sendPref" work automatically with the default value that is pre-checked?