JSFiddle - React, Tailwind, and code Playground
HTML
<input type="text" style="display:none" value="foo1"/>
<input type="text" value="foo1"/>
<input type="submit" value="foo2"/>
<input type="button" value="foo4"/>
<button>Hello</button>
<input type="button" style="display:none" value="foo3"/>
<input type="button" value="foo4"/>
<textarea>Hello</textarea>
JavaScript
$(":input:not(input[type=button],input[type=submit],button):visible:first")
.css("color","red")