Events

Common JavaScript Events:

Mouse:

  • click, dblclick

  • mousedown, mouseup

  • mousemove, mouseover, mouseout

  • contextmenu

Keyboard:

  • keydown, keyup, keypress

Form:

  • submit, reset, change

  • input, focus, blur

Window:

  • load, unload, resize

  • scroll, DOMContentLoaded

  • beforeunload, hashchange

Touch:

  • touchstart, touchend, touchmove

  • touchcancel

Animation/Transition:

  • animationstart, animationend

  • transitionstart, transitionend

Drag:

  • dragstart, dragend, dragover

  • drop, dragenter, dragleave

References

Last updated