Показать сообщение отдельно
  #4 (permalink)  
Старый 27.04.2014, 17:38
Аватар для рони
Профессор
Отправить личное сообщение для рони Посмотреть профиль Найти все сообщения от рони
 
Регистрация: 27.05.2010
Сообщений: 33,109

tenebrosus,
ох уж эта верстальщица, где она только не работает везде успевает )))
<!DOCTYPE HTML>
<html>
<head>
  <title>Untitled</title>
  <meta charset="utf-8">
  <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
  <script>
   $(function ()
{
   var $unique = $('input.unique');
	$unique.click(function() {
		$unique.not(this).prop({'checked': false});
        $(this).prop({'checked': true});
	});
})
  </script>
</head>

<body>
<div class="check">
	<input class="unique" type="checkbox" id="female" checked="checked" />
	<label class="check" for="female"><img src="http://javascript.ru/forum/images/smilies/cray.gif" /></label>
	<input class="unique"type="checkbox" id="male" />
	<label class="check" for="male"><img src="http://javascript.ru/forum/images/smilies/cray.gif" /></label>
</div>

</body>
</html>
Ответить с цитированием