JSFiddle - React, Tailwind, and code Playground

by wirey00

HTML

<input type='radio' id='hkitdyn15' name='test'/>

<button>click1</button>

<a href='#'>click2</a>

<input type='button' value='click3'/>

JavaScript

$('button').click(function() {
    $('#hkitdyn15').prop("checked", false);
});

$('a').click(function(e){
   e.preventDefault(); 
   $('#hkitdyn15').removeAttr("checked");
});

$('input[type=buton]').click(function() {
    $('#hkitdyn15').attr("checked",false);
});