JSFiddle - React, Tailwind, and code Playground
by dcardoso
HTML
<input type="text" id="first" />
<input type="text" id="second" />
JavaScript
$( '#first' ).bind( 'keyup', function() {
$( '#second' ).focus();
});
by dcardoso
<input type="text" id="first" />
<input type="text" id="second" />
$( '#first' ).bind( 'keyup', function() {
$( '#second' ).focus();
});