Selects all elements of the specified language. The :lang() selector matches elements
Selects all elements of type radio. $( ":radio" ) is equivalent to $( "[type=radio]"
Insert every element in the set of matched elements before the target. The
Selects all elements of type checkbox. $( ":checkbox" ) is equivalent to $( "[type=checkbox]"
Selects all elements of type reset. :reset is equivalent to [type="reset"]
Hide the matched elements by fading them to transparent. The .fadeOut() method animates
Add a collection of DOM elements onto the jQuery stack.
Create a new jQuery object with elements added to the set of matched elements. Given a jQuery object
Adjust the opacity of the matched elements. The .fadeTo() method animates the opacity
Hide the matched elements. With no parameters, the .hide() method is the simplest way
Page 27 of 32