event.target
  • References/JavaScript/jQuery/Events

The DOM element that initiated the event. The target property can be the element that

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

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

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

Bind two or more handlers to the matched elements, to be executed on alternate clicks.

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

Bind an event handler to the "unload" JavaScript event. This method is a shortcut for .on(

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

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

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

Attach a handler to one or more events for all elements that match the selector, now or in the future, based on a specific set of root elements.

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

The other DOM element involved in the event, if any. For mouseout, indicates the element

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

The element where the currently-called jQuery event handler was attached. This property is most

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

Indicates whether the META key was pressed when the event fired. Returns a boolean value (true

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

Returns whether event.stopPropagation() was ever called on this event object

2025-01-10 15:47:30