JSFiddle - React, Tailwind, and code Playground
by ChaseWest
HTML
<input id="formloginpassword" type="text" name="pass" placeholder="Password" value="filled-from-backend"></input>
JavaScript
$("input").on("keyup", function(){
console.log($(this).val())
});