JSFiddle - React, Tailwind, and code Playground
HTML
<input type="text" name="foo" />
<input type="hidden" name="hidden" id="bar" value="surprise" />
<input type="submit" name="submit" />
JavaScript
var inputSelector = 'input:not(:hidden), textarea, select';
$(inputSelector).val('foobar');
var bc = $('#bar').val();
alert(bc);