JSFiddle - React, Tailwind, and code Playground
HTML
<input type="text" placeholder="input1"/>
<input type="text" placeholder="input2"/>
<input type="text" placeholder="input3"/>
<input type="text" placeholder="input4"/>
<input type="text" placeholder="input5"/>
<br/>
<button class="submit">Click me</button>
JavaScript
$(function() {
$('.submit').click(function () {
$('input').css('background', 'red');
});
});