I’m looking for help with radio buttons like the following:
<div class="field-content medium-9 columns">
<label class="radio-label"><input type="radio" name="contact_type" value="phone"> Mobile</label>
<label class="radio-label"><input type="radio" name="contact_type" value="email"> Email</label>
<input type="text" class="field block visible-no-type" disabled="disabled" placeholder="Select Mobile/Email first">
<input type="text" name="contact_value" class="field block invisible-no-type">
</div>
which looks like:
I’d like to select “Mobile” and enter my cell phone number in the “contact_value” text field. But I can’t figure out how to specify the selection of the “contact_type” field to value “phone”.