:radio
selectorThe jQuery :radio
selector is used to select all elements of type radio.
$( "input:radio" )
is equivalent to $( "input[type=radio]" )
.
:radio
selector Syntax$(':radio')
:radio
selector ExamplesIn below example,We will hightlight all radio inputs.
Try now