JSFiddle - React, Tailwind, and code Playground

by teneff

HTML

<input type="radio" name="test" value="1" />
<input type="radio" name="test" value="2" checked="checked" />
<input type="radio" name="test" value="3" />

JavaScript

$('input').click(function(e){
    if (e.ctrlKey) {
        $(this).prop('checked', false);
    }
});