.replaceAll()
  • References/JavaScript/jQuery/Manipulation

Replace each target element with the set of matched elements. The .replaceAll() method

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

Reduce the set of matched elements to a subset specified by a range of indices. Given a jQuery object

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

The other DOM element involved in the event, if any. For mouseout, indicates the element

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

Create a deep copy of the set of matched elements. The .clone() method performs a deep

2025-01-10 15:47:30
Attribute contains selector [name*=”value”]
  • References/JavaScript/jQuery/Selectors

Selects elements that have the specified attribute with a value containing a given substring. This

2025-01-10 15:47:30
Multiple selector (“selector1, selector2, selectorN”)
  • References/JavaScript/jQuery/Selectors

Selects the combined results of all the specified selectors. You can specify any number of selectors

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

Remove a property for the set of matched elements. The .removeProp() method removes

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

Indicates whether the META key was pressed when the event fired. Returns a boolean value (true

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

Get the immediately preceding sibling of each element in the set of matched elements, optionally filtered by a selector.

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

Returns whether event.stopPropagation() was ever called on this event object

2025-01-10 15:47:30