JSFiddle - React, Tailwind, and code Playground
by Blake Plumb
HTML
<input type="radio" value="213490" id="lt_1133041_213490" name="lt_1133041[]"> <label for="lt_1133041_213490">LH License</label> <input type="radio" value="213491" id="lt_1133041_213491" name="lt_1133041[]"> <label for="lt_1133041_213491">PC License</label>
JavaScript
function checkRadio(text){
$('#'+$('label:contains('+text+')').attr('for')).attr('checked', 'checked');
}
checkRadio('LH License');