JSFiddle - React, Tailwind, and code Playground

by johntrepreneur

HTML

<input id="input1" type="text"/>

JavaScript

$('#input1').on('propertychange', function(e){
    $('#input1').after($('<p>changed</p>'));
});