.die()
  • References/JavaScript/jQuery/Events

Remove event handlers previously attached using .live() from the elements. Any handler

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

Remove the whitespace from the beginning and end of a string. The $.trim() function

2025-01-10 15:47:30
: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
jQuery.cssHooks
  • References/JavaScript/jQuery/Miscellaneous

Hook directly into jQuery to override how particular CSS properties are retrieved or set, normalize CSS property naming, or create custom properties.

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
event.delegateTarget
  • References/JavaScript/jQuery/Events

The element where the currently-called jQuery event handler was attached. This property is most

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

Insert content, specified by the parameter, to the end of each element in the set of matched elements. The

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

Selects the element that is the root of the document. In HTML, the root of the document, and thus

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

Selects all input, textarea, select and button elements. The :input selector basically

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

Selects all elements of type checkbox. $( ":checkbox" ) is equivalent to $( "[type=checkbox]"

2025-01-10 15:47:30