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.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
.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.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
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
.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
.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
.scroll()
  • References/JavaScript/jQuery/Events

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

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
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