Only one checkbox at a time
by Shah Danial
HTML
Checkboxes test 1:
<input type="checkbox" class="myCheckbox" value="1" />
<input type="checkbox" class="myCheckbox" value="2" />
<input type="checkbox" class="myCheckbox" value="3" />
<input type="checkbox" class="myCheckbox" value="4" />
<input type="checkbox" class="myCheckbox" value="5" />
<br /><br /><br />
CSS
.selectme {
float:left;
}
.myCheckbox2 {
margin-left:4px;
}
JavaScript
//Near checkboxes
$('input[type="checkbox"]').click(function() {
$(this).siblings('input:checkbox').prop('checked', false);
});