Edit in JSFiddle

<h4>Input type=text, synchronization using jQuery</h4>
Master :
<br/>
<input type="text" id="parent" />
<br/>Slave :</br>
<input type="text" id="child" />
$(function () {
    $(document).on('keyup', '#parent', function () {
        $('#child').val($(this).val());
    });
});