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(){
    $('input').focusout(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>