JSFiddle - React, Tailwind, and code Playground

HTML

<input type="text" />
    <select><option>Test</option></select>
<input type="text" />
    <select><option>Test</option></select>

JavaScript

var theFirst = $('input,select').first()[0].tagName;

alert(theFirst);