I have two text boxes like,
Is it possible to focus th
Try doing something like this...Every time the left input is changed the right one's value is change too.
$("#left").on("input",function() { $("#right").val($(this).val()); });