JSFiddle - React, Tailwind, and code Playground
by Saran
HTML
<input type="text" value="first" /><br/>
<input type="text" value="second" /><br/>
JavaScript
$('input').on('blur', function() {
console.log(this.value);
});
by Saran
<input type="text" value="first" /><br/>
<input type="text" value="second" /><br/>
$('input').on('blur', function() {
console.log(this.value);
});