JSFiddle - React, Tailwind, and code Playground
HTML
<input type="text" class="changing" />
<div class="result">More inputs should be created here when you enter text and leave the textbox. It should also work on all newly created textboxes with class 'changing'.</div>
JavaScript
var counter = 1;
$(document).ready(function() {
$(".changing").live('change', function() {
$(".result").append('<br /><input type="text" class="changing" />');
});
});