JSFiddle - React, Tailwind, and code Playground
HTML
<!DOCTYPE html>
<html>
<head>
<script src="http://code.jquery.com/jquery-1.7.2.js"></script>
<script>
$(function(){
$('body').on('focusout','input', function(){
var text = $(this).val();
var parent = $(this).parent('div');
try {
parent.text(text);
} catch(e) {
alert(e);
}
});
});
</script>
</head>
<body>
<div><input></input></div>
</body>
</html>