JSFiddle - React, Tailwind, and code Playground
HTML
<input type="text"/>
JavaScript
$("input").change(function(){
$(this).css("opacity", "0.6");
});
<input type="text"/>
$("input").change(function(){
$(this).css("opacity", "0.6");
});