:password selector
  • References/JavaScript/jQuery/Selectors

Selects all elements of type password. $( ":password" ) is equivalent to $( "[type=password]"

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

Get all following siblings of each element in the set of matched elements, optionally filtered by a selector.

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

Insert every element in the set of matched elements after the target. The

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

Execute the next function on the queue for the matched elements. When .dequeue() is

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

Selects all elements of type image. :image is equivalent to [type="image"]

2025-01-10 15:47:30
deferred.state()
  • References/JavaScript/jQuery/Deferred Object

Determine the current state of a Deferred object. The deferred.state() method returns a string representing

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

Selects all elements that are the nth child of their parent in relation to siblings with the same element name.

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

Get the current computed height for the first element in the set of matched elements, including padding, border, and optionally margin. Returns a number (without "px")

2025-01-10 15:47:30
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