:password Selector
password selector Description: Selects all elements of type password. version added: 1.0jQuery( ":password" ) $( ":password" ) is equivalent to $( "[type=password]" ). As with other pseudo-class...
View Article:input Selector
input selector Description: Selects all input, textarea, select and button elements. version added: 1.0jQuery( ":input" ) The :input selector basically selects all form controls. Additional Notes:...
View Article:image Selector
image selector Description: Selects all elements of type image. version added: 1.0jQuery( ":image" ) :image is equivalent to [type="image"] Additional Notes: Because :image is a jQuery extension and...
View Article:focus Selector
focus selector Description: Selects element if it is currently focused. version added: 1.6jQuery( ":focus" ) As with other pseudo-class selectors (those that begin with a ":"), it is recommended to...
View Article:file Selector
file selector Description: Selects all elements of type file. version added: 1.0jQuery( ":file" ) :file is equivalent to [type="file"]. As with other pseudo-class selectors (those that begin with a...
View Article:enabled Selector
enabled selector Description: Selects all elements that are enabled. version added: 1.0jQuery( ":enabled" ) As with other pseudo-class selectors (those that begin with a ":") it is recommended to...
View Article:disabled Selector
disabled selector Description: Selects all elements that are disabled. version added: 1.0jQuery( ":disabled" ) As with other pseudo-class selectors (those that begin with a ":"), it is recommended to...
View Article:checked Selector
checked selector Description: Matches all elements that are checked or selected. version added: 1.0jQuery( ":checked" ) The :checked selector works for checkboxes, radio buttons, and select elements....
View Article:checkbox Selector
checkbox selector Description: Selects all elements of type checkbox. version added: 1.0jQuery( ":checkbox" ) $( ":checkbox" ) is equivalent to $( "[type=checkbox]" ). As with other pseudo-class...
View Article:button Selector
button selector Description: Selects all button elements and elements of type button. version added: 1.0jQuery( ":button" ) An equivalent selector to $( ":button" ) using valid CSS is $( "button,...
View Article