JSFiddle - React, Tailwind, and code Playground

HTML

<div id="garbage"></div>
<div id="bad">
    <input type="text" id="bad_first" value="Don't click me" /><br />
    <input type="text" id="bad_second" value="Click me, OH $&*#" />
</div>

JavaScript

$('input').mousedown(function (event) {
    $(this).css('background', 'red');
    $('#garbage').html('Text to trigger reflow');
});