Сообщение от cmd
|
Новость для меня.
|
cейчас пошла серия траблов из-за исключения в 1.9 live и bind
Чот тоже в непонятках:
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8"/>
<title> - jsFiddle demo</title>
<script type="text/javascript" src="http://yandex.st/jquery/1.8.2/jquery.min.js"></script>
<style type="text/css">
#bat {
width:100px;
height:30px;
background-color:#0FF;
text-align:center;
padding-top:8px;
margin:20px;
cursor:pointer;
}
#che {
margin:20px;
}
</style>
<script type="text/javascript">
$(window).load(function(){
$("#bat").click(function(){
if($("#che:checked").length){
$('#che').removeAttr('checked'); return;
}
$('#che').attr('checked',true);
});
});
</script>
</head>
<body>
<div id="bat">батон</div>
<input id="che" type="checkbox" checked />
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8"/>
<title> - jsFiddle demo</title>
<script type="text/javascript" src="http://yandex.st/jquery/1.9.1/jquery.min.js"></script>
<style type="text/css">
#bat {
width:100px;
height:30px;
background-color:#0FF;
text-align:center;
padding-top:8px;
margin:20px;
cursor:pointer;
}
#che {
margin:20px;
}
</style>
<script type="text/javascript">
$(window).load(function(){
$("#bat").click(function(){
if($("#che:checked").length){
$('#che').removeAttr('checked'); return;
}
$('#che').prop('checked',true);
});
});
</script>
</head>
<body>
<div id="bat">батон</div>
<input id="che" type="checkbox" checked />
</body>
</html>