:image selector
  • References/JavaScript/jQuery/Selectors

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

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

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

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

Get the parent of each element in the current set of matched elements, optionally filtered by a selector. Given

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

Display the matched elements. With no parameters, the .show() method is the simplest

2025-01-10 15:47:30
: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
.scrollTop()
  • References/JavaScript/jQuery/Offset

Get the current vertical position of the scroll bar for the first element in the set of matched elements or set the vertical position of the scroll bar for every matched

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