On text changed in Javascript

11,875

There are the following events

onkeydown

onkeyup

onkeypress

Share:
11,875
Chris
Author by

Chris

Software Developer from Cardiff, Wales

Updated on June 04, 2022

Comments

  • Chris
    Chris almost 2 years

    i need to be able to able to detect when any character is entered into a textbox in Javascript, and clear another corresponding textbox. I have used the onfocus method for this but when tabbing between textboxes to get to submit, it removes the data and I don't want it to.

    What methods are there I can use to trigger a JS event when a textbox is entered into?

  • Tim Down
    Tim Down over 13 years
    onpaste, oncut, onmouseup (for drag and drop)...