Events

  1. keypress
  2. keydown
  3. keyup


  1. mouseenter/mouseover
  2. mouseleave
  3. mouseup
  4. mousedown


  1. blur
  2. focus


  1. click
  2. doubleclick


  1. input
  2. inputchange

click: This event occurs when a user click on an element.

doubleclickThis event occurs when a user doubleclick on an element.

keydown:It gives the value before key release, while pressing the key only. 

keyup:t gives the value after key release.

blur:It gives the value after focusing out/clicking other box.

focus:It gives the value when returing into the same input box.

mouseenter/mouseover:It gives the value when arrow enters the tag.

mouseleave:It gives the value when arrow leaves the tag.

mouseup
mousedown

change:This event is triggered when the value of an input element changes.






Comments