JSFiddle - React, Tailwind, and code Playground
HTML
<input id="input" type="text" />
JavaScript
$(document).ready( function(e){
$('#input').keydown( function(e){
if( $(this).val().length === 8 ) { alert('We have a winner!');}
});
});