Have you ever encountered the issue where you can't seem to select radio buttons despite them having a confirmed name
attribute? Here is an example of the HTML code:
<div id="surveys-list" class="inline col-xs-12"><div>
<div class="inline-wrapper">
<div id="question-title"><div>
<label class="control-label">What is your gender?</label>
</div>
</div>
<div id="inline-question">
<form class="form-horizontal">
<div data-fields="">
<div class="form-field-gender control-group form-field" data-field="">
<div class="controls" data-input="">
<label class="radio">
<input type="radio" name="field-input-gender" id="field-input-gender-0" value="qx1-1">
<i class="fa fa-male fa-fw"></i> Male
</label>
<label class="radio">
<input type="radio" name="field-input-gender" id="field-input-gender-1" value="qx1-2">
<i class="fa fa-female fa-fw"></i> Female
</label>
</div>
</div>
</div>
</form>
</div>
</div>
Interestingly, when I transfer this HTML to a different page or jsfiddle, they work perfectly and are selectable. Do you think there might be something in the JavaScript or CSS that is preventing their selection?
In my testing with this jsfiddle, even after copying over the CSS and full HTML, the radio buttons remain unselectable. Could it be an issue related to the CSS styling?