1
I have a text-area and a input, wanted that when typing some information in the input it already fills in the text-area. I tried the event onchange, but from what I’ve noticed it’s only fired when it leaves the field, there’s some input event that does that?
<input onchange="FuncaoTeste();" type="text" class="form-control" id="iptDetalhes">
can use the
onkeyup
– Leonardo Getulio