I need to copy the text entered in a field (whether it was typed in, pasted or from browser auto-filler) and paste it in another field either at the same time or as soon as
try with keyup event
$('#box_1').keyup(function(){ $('#box_2').val($(this).val()); })