JSFiddle - React, Tailwind, and code Playground

HTML

<input type="text" value="" id="x"><br />
<span id="xx">ss</span>

JavaScript

/*
$('input[type=text][value=]').bind('change', function() {
    alert('bind change'); // Works.
});

$('input[type=text][value=]').live('change', function() {
    alert('live change'); // Works only in 1.4.2.
});
*/

$(document).ready(function(){
   
    
     $('input').live('blur', function () {
         var filter = $(this).val();
         
         $("#xx").append($('<span />').html($(this).val()));
       // $(this).parent();
        //$(this).remove();
    });

})