JSFiddle - React, Tailwind, and code Playground
HTML
<a href="#" class="select-html">Select HTML</a><br>
<a href="#" class="select-css">Select CSS</a><br>
<a href="#" class="select-js">Select JS</a>
<hr/>
<input type="radio" id="html" name="fav_language" value="HTML">
<label for="html">HTML</label><br>
<input type="radio" id="css" name="fav_language" value="CSS">
<label for="css">CSS</label><br>
<input type="radio" id="javascript" name="fav_language" value="JavaScript">
<label for="javascript">JavaScript</label>
JavaScript
jQuery(document).ready(function(){
jQuery(".select-html").on('click', function(){
jQuery("input[type='radio'][id='html']").attr("checked", true);
});
jQuery(".select-css").on('click', function(){
jQuery("input[type='radio'][id='css']").attr("checked", true);
});
jQuery(".select-js").on('click', function(){
jQuery("input[type='radio'][id='javascript']").attr("checked", true);
});
});