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