CSS Almanac Home » CSS Almanac » Selectors » C » :checked :checked Browser Support Chrome Safari Firefox Opera IE Android iOS TBD TBD TBD TBD TBD TBD TBD
“:checked” selector work to find out the checkbox who are checked .
example
html code::
jQuery code::
$(document).ready(function(){
alert($(“#Demo :checked”).attr(‘id’));
});
Result
1
Not just to find out the element checked but also to style it:
#Demo:checked { color:red; text-decoration:underline; } or
input[type="radio"]:checked{ color:red; … }