<html>
<head>
<script type = "text/jscript" src="jquery.js"></script>
</head>
<body>
<form>
<div>
<input type="checkbox" name="nos" value="One" id="one"> One
<input type="checkbox" name="nos" value="Two" id="two"> Two
<input type="checkbox" name="nos" value="Three" id="three">Three
</div>
<div id = "log"></log>
</form>
<script>
$("input").change(function() {
$("#log").html( $(":checked").val() + " is checked!" );
});
</script>
</body>
</html>
The problem with my code is getting message when i inactive checkbox?
plz somebody help me?