JSFiddle - React, Tailwind, and code Playground
HTML
<form>
<input type='text' id='text1'>
<textarea id='textarea1'></textarea>
</form>
JavaScript
$('#text1, #textarea1').focusout(function() {
log(this.id + " focus out");
});
function log(msg) {
$(document.body).append("<p>" + msg + "</p>");
}