:text selector
  • References/JavaScript/jQuery/Selectors

Selects all input elements of type text. $( ":text" ) allows us to select all <input

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

Selects all elements that are disabled. As with other pseudo-class selectors (those that begin with

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

Get the combined text contents of each element in the set of matched elements, including their descendants. Unlike

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

Parses a string into an array of DOM nodes. jQuery.parseHTML uses native methods to

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

Load data from the server and place the returned HTML into the matched element.

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

Encode a set of form elements as a string for submission. The .serialize() method creates

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

Selects all elements that are the first among siblings of the same element name. The :first-of-type

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

Relinquish jQuery's control of the $ variable. Many JavaScript libraries use $

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

A generic iterator function, which can be used to seamlessly iterate over both objects and arrays. Arrays and array-like objects with a length property (such as a function's

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