.mousemove()
  • References/JavaScript/jQuery/Events

Bind an event handler to the "mousemove" JavaScript event, or trigger that event on an element. This

2025-01-10 15:47:30
.hover()
  • References/JavaScript/jQuery/Events

Bind two handlers to the matched elements, to be executed when the mouse pointer enters and leaves the elements.

2025-01-10 15:47:30
.select()
  • References/JavaScript/jQuery/Events

Bind an event handler to the "select" JavaScript event, or trigger that event on an element. This

2025-01-10 15:47:30
.mouseenter()
  • References/JavaScript/jQuery/Events

Bind an event handler to be fired when the mouse enters an element, or trigger that handler on an element. This

2025-01-10 15:47:30
event.stopPropagation()
  • References/JavaScript/jQuery/Events

Prevents the event from bubbling up the DOM tree, preventing any parent handlers from being notified of the event.

2025-01-10 15:47:30
event.data
  • References/JavaScript/jQuery/Events

An optional object of data passed to an event method when the current executing handler is bound.

2025-01-10 15:47:30
.mouseout()
  • References/JavaScript/jQuery/Events

Bind an event handler to the "mouseout" JavaScript event, or trigger that event on an element. This

2025-01-10 15:47:30
.dblclick()
  • References/JavaScript/jQuery/Events

Bind an event handler to the "dblclick" JavaScript event, or trigger that event on an element. This

2025-01-10 15:47:30
event.namespace
  • References/JavaScript/jQuery/Events

The namespace specified when the event was triggered. This will likely be used primarily by plugin

2025-01-10 15:47:30
.undelegate()
  • References/JavaScript/jQuery/Events

Remove a handler from the event for all elements which match the current selector, based upon a specific set of root elements.

2025-01-10 15:47:30