Select not checked checkbox
Description
The following code shows how to select not checked checkbox.
Example
<html>
<head>
<script
src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {<!-- w ww. j a v a 2s . c om-->
$("input:not(:checked) + span").css("background-color", "yellow");
});
</script>
</head>
<body>
<div>
<input type="checkbox" name="a" /> <span>A</span>
</div>
<div>
<input type="checkbox" name="b" /> <span>B</span>
</div>
<div>
<input type="checkbox" name="c" checked="checked" /> <span>C</span>
</div>
</body>
</html>