![javascript](https://habrastorage.org/r/w120/webt/59/cc/76/59cc7600c78a2239379574.jpeg)
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>