JavaScript
2
Вклад в тег
<input type='checkbox' id='taxi' onchange="checkk(this);"/>
<input type='checkbox' id='ucheb' onchange="checkk(this);"/>
<script>
function checkk(elem) {
var id = elem.id;
if(id=='taxi') {
$('#ucheb').removeAttr("checked");
}
if(id=='ucheb') {
$('#taxi').removeAttr("checked");
}
}
</script>