Добрый день друзья.
Возник вопрос есть разметка
<tr>
<td>Укладка </td>
<td><input type="checkbox" name="price" id="price1" value="1500">
<label for="price1"><span></span>1500</label></td>
<td><input type="checkbox" name="price" id="price2" value="2000">
<label for="price2"><span></span>2000</label></td>
<td><input type="checkbox" name="price" id="price3" value="2500">
<label for="price3"><span></span>2500</label></td>
</tr>
<tr>
<td>Express причёска(10 мин.)</td>
<td><input type="checkbox" name="price" id="price4" value="1500">
<label for="price4"><span></span>1500</label></td>
<td><input type="checkbox" name="price" id="price5" value="2000">
<label for="price5"><span></span>2000</label></td>
<td><input type="checkbox" name="price" id="price6" value="2500">
<label for="price6"><span></span>2500</label></td>
</tr>
хочется что бы из группы по 3 чекбокса был выделен только один чекбокс.
Подробнее: к примеру щелчек по чекбоксу id="price4" его отмечает, но после я щелкаю по чекбоксу id="price5" он выделяется а отметка с id="price4" падает
Я написал такой фильтр :
$('*').find("input[name='price']:checked").parent().siblings().find("input[name='price']").removeAttr('cheched');
Но он не срабатывает где ошибка ?