I'm trying to create a form with a write-in "other" option as the last radio button. I've tried variants of the following with no success:
<label><input type="radio" name="candidate" value="option1">First Option</label>
<label><input type="radio" name="candidate" value="option2">Second Option</label>
<label><input type="radio" name="candidate" value="other">OTHER</label><input type="text" name="other" value="Write In" />
Is it possible to have a radio button with a text input that passes its value to that radio button on submit without using javascript?