JSFiddle - React, Tailwind, and code Playground
HTML
<div id="look">
<input class="a" type="text"/>
<input class="b" type="text"/>
<input class="c" type="text"/>
</div>
JavaScript
$('#look').find( '.a, .b, .c' ).prop('disabled', true);
<div id="look">
<input class="a" type="text"/>
<input class="b" type="text"/>
<input class="c" type="text"/>
</div>
$('#look').find( '.a, .b, .c' ).prop('disabled', true);