JSFiddle - React, Tailwind, and code Playground
HTML
<input type="radio" disabled="disabled" />
JavaScript
$(':radio:disabled').removeAttr('disabled').click(function(){
this.checked=false;
})
<input type="radio" disabled="disabled" />
$(':radio:disabled').removeAttr('disabled').click(function(){
this.checked=false;
})