:contains() selector
  • References/JavaScript/jQuery/Selectors

Select all elements that contain the specified text. The matching text can appear directly within

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

Determine whether any of the matched elements are assigned the given class. Elements may have more

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

Selects the last matched element. Note that :last selects a single element by filtering

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

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

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
callbacks.has()
  • References/JavaScript/jQuery/Callbacks Object

Determine whether or not the list has any callbacks attached. If a callback is provided as an argument, determine whether it is in a list.

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

Attach a function to be executed whenever an Ajax request completes successfully. This is an Ajax Event

2025-01-10 15:47:30
Next siblings selector (“prev ~ siblings”)
  • References/JavaScript/jQuery/Selectors

Selects all sibling elements that follow after the "prev" element, have the same parent, and match the filtering "siblings" selector.

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

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

2025-01-10 15:47:30