Since it is a read-only input, you cannot enter it, so changing, keyup, keydown and keystroke will not work with respect to this input.
In doing so, you must apply the event to a function that changes the input text. Therefore, if input1 changes the text in textinput:
$("#input1").keyup(function(){ $("#textinput").val($(this).val()); });
I hope this helps.
source share