I have 2 radio input fields on the sheet. They are identical and are located in different sections of the character sheet for convenience. I would like for the checkbox state to be displayed on both radio buttons simultaneously regardless of which location is used. Is this possible? Currently the state only shows on one box at a time vs both. Thanks test code <span><input type="radio" name="attr_notes" value="0" title="@{notes}" checked="checked" /><b> None</b></span>
<span><input type="radio" name="attr_notes" value="1" title="@{notes}" /><b> A. Notes</b></span>
<span><input type="radio" name="attr_notes" value="2" title="@{notes}" /><b> B. Notes</b></span>
<span><input type="radio" name="attr_notes" value="3" title="@{notes}" /><b> C. Notes</b></span>
<br>
<span><input type="radio" name="attr_notes" value="0" title="@{notes}" checked="checked" /><b> None</b></span>
<span><input type="radio" name="attr_notes" value="1" title="@{notes}" /><b> A. Notes</b></span>
<span><input type="radio" name="attr_notes" value="2" title="@{notes}" /><b> B. Notes</b></span>
<span><input type="radio" name="attr_notes" value="3" title="@{notes}" /><b> C. Notes</b></span>