I have a radio button select in my UI.
<div class="form-group">
<label for="inputEditActive" class="col-lg-2 control-label"></label>
<div class="col-lg-1">
<input type="radio" name="radioItem" id="radioItemActive"/>
</div>
<div class="col-lg-1">Active</div>
<div class="col-lg-1"></div>
<div class="col-lg-1">
<input type="radio" name="radioItem" id="radioItemDeactive"/>
</div>
<div class="col-lg-1">Deactive</div>
</div>
I want to check one of these buttons using jQuery.
So far I tried different methods that I found on the Internet, but nothing has worked properly.
Can someone please help me with this. Thank you.