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();
});