:lang() selector
  • References/JavaScript/jQuery/Selectors

Selects all elements of the specified language. The :lang() selector matches elements

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

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

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

Insert every element in the set of matched elements before the target. The

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
:reset selector
  • References/JavaScript/jQuery/Selectors

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

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

Hide the matched elements by fading them to transparent. The .fadeOut() method animates

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

Add a collection of DOM elements onto the jQuery stack.

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

Create a new jQuery object with elements added to the set of matched elements. Given a jQuery object

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

Adjust the opacity of the matched elements. The .fadeTo() method animates the opacity

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

Hide the matched elements. With no parameters, the .hide() method is the simplest way

2025-01-10 15:47:30