We have a number of events we can listen for in form elements
inputfired on form elements when the element value is changedchangefired on form elements when the element value is changed. In the case of textinputelements andtextarea, it’s fired only once when the element loses focus (not for every single character typed)cutfired when the user cuts text from the form elementcopyfired when the user copies text from the form elementpastefired when the user pastes text into the form elementfocusfired when the form element gains focusblurfired when the form element loses focus
Here’s a sample form demo on Codepen:
See the Pen Form events demo by Flavio Copes (@flaviocopes) on CodePen.