.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.pageX
  • References/JavaScript/jQuery/Events

The mouse position relative to the left edge of the document. event

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

The difference in milliseconds between the time the browser created the event and January 1, 1970. This

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

Attach a handler to an event for the elements. As of jQuery 1.7, the

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

Attach a handler to an event for the elements. The handler is executed at most once per element per event type.

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

If this method is called, the default action of the event will not be triggered. For example, clicked

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
.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
.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
event.currentTarget
  • References/JavaScript/jQuery/Events

The current DOM element within the event bubbling phase. This property will typically be equal to

2025-01-10 15:47:30