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
Element selector (“element”)
  • References/JavaScript/jQuery/Selectors

Selects all elements with the given tag name. JavaScript's getElementsByTagName() function

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

Add the previous set of elements on the stack to the current set. Note: This function

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

Attach a handler to one or more events for all elements that match the selector, now or in the future, based on a specific set of root elements.

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
jQuery.fx.off
  • References/JavaScript/jQuery/Effects

Globally disable all animations. When this property is set to true, all animation methods

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

Returns whether event.stopImmediatePropagation() was ever called on this event object. This property

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

Store arbitrary data associated with the specified element. Returns the value that was set. Note:

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

Register a handler to be called when Ajax requests complete with an error. This is an Ajax Event.

2025-01-10 15:47:30