jQuery CheckBoxes In a web page with chechboxes you need to write e jquery that retruns the
number checked checkboxes
A.
$(“input:checked”).length;
B.
$(“input”, selected).length;
C.
$(“input:selected”).length;
Explanation:
n = $(“input:checked”).length;
http://api.jquery.com/checked-selector/