.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
jQuery.fn.extend()
  • References/JavaScript/jQuery/Utilities

Merge the contents of an object onto the jQuery prototype to provide new jQuery instance methods. The

2025-01-10 15:47:30
All selector (“*”)
  • References/JavaScript/jQuery/Selectors

Selects all elements. Caution: The all, or universal, selector is extremely slow, except when used

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

Selects all elements that are the last among siblings of the same element name. The :last-of-type

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

Display or hide the matched elements by animating their opacity. The .fadeToggle()

2025-01-10 15:47:30
Class selector (“.class”)
  • References/JavaScript/jQuery/Selectors

Selects all elements with the given class. For class selectors, jQuery uses JavaScript's native

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

Selects all elements that are enabled. As with other pseudo-class selectors (those that begin with

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

Add the previous set of elements on the stack to the current set, optionally filtered by a selector. As

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

Remove the set of matched elements from the DOM. Similar to

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

Remove all child nodes of the set of matched elements from the DOM. This method removes not only

2025-01-10 15:47:30