DEV Community

Cover image for jquery events list example
Tutsmake
Tutsmake

Posted on

jquery events list example

These are some examples of jQuery events.

  • A mouse click,hover etc.
  • Selecting a radio button.
  • An HTML form submission.
  • clicking on an element.
  • Scrolling of the web page etc.

List jquery events methods

Mouse Events

  • click
  • dblclick
  • mouseenter
  • mouseleave

Keyboard Events

  • keyup
  • keydown
  • keypress

Form Events

  • submit
  • change
  • blur
  • focus

Document/Window Events

  • load
  • unload
  • scroll
  • resize

Read more https://www.tutsmake.com/list-jquery-events-handling-methods/

Top comments (0)