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
:last-child selector
  • References/JavaScript/jQuery/Selectors

Selects all elements that are the last child of their parent. While

2025-01-10 15:47:30
:nth-last-of-type() selector
  • References/JavaScript/jQuery/Selectors

Selects all the elements that are the nth-child of their parent in relation to siblings with the same element name, counting from the last element to the first.

2025-01-10 15:47:30
callbacks.fireWith()
  • References/JavaScript/jQuery/Callbacks Object

Call all callbacks in a list with the given context and arguments. This method returns the Callbacks

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

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

2025-01-10 15:47:30
callbacks.lock()
  • References/JavaScript/jQuery/Callbacks Object

Lock a callback list in its current state. This method returns the Callbacks object onto which it

2025-01-10 15:47:30
:only-child selector
  • References/JavaScript/jQuery/Selectors

Selects all elements that are the only child of their parent. If the parent has other child elements

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
:not() selector
  • References/JavaScript/jQuery/Selectors

Selects all elements that do not match the given selector. All selectors are accepted inside :not()

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

Reduce the set of matched elements to those that have a descendant that matches the selector or DOM element. Given

2025-01-10 15:47:30