In my HTML, I have the following radio buttons:
<div class="col-lg-4" id="radioButtons">
<form action="">
<fieldset id="capacity">
<legend>capacity</legend>
<label for="input-ao"><input size=25 id="input-ao" type="radio" name="capacity" [value]="0-30" checked="checked" />0-30</label>
<label for="input-lo"><input id="input-lo" type="radio" name="capacity" [value]="30-60"/>30-60</label>
<label for="input-lo"><input id="input-lo" type="radio" name="capacity" [value]="60-100"/>60-100</label>
<label for="input-lo"><input id="input-lo" type="radio" name="capacity" [value]="100"/>100+</label>
<br>
</fieldset>
<fieldset id="computerFieldset">
<legend>computer</legend>
<label for="input-ao"><input size=25 id="input-ao" type="radio" name="comp" value="yes" checked="checked" />yes</label>
<label for="input-lo"><input id="input-lo" type="radio" name="comp" value="no"/>no</label>
<br>
</fieldset>
</form>
</div>
I would like to retrieve the selected radio button and inquire whether having a default checked="checked"
value could potentially pose an issue. Thank you.