JSFiddle - React, Tailwind, and code Playground
HTML
<input type=""
JavaScript
$('#checkbox').change(function() {
if($('#checkbox').is(':checked')) {
$('.test').val('')
} else {
}
});
<input type=""
$('#checkbox').change(function() {
if($('#checkbox').is(':checked')) {
$('.test').val('')
} else {
}
});