Сообщение от dalexra51
|
ставил на 100 мс. Не помогает
|
У меня вот все работает...
<!DOCTYPE html>
<html>
<head>
<meta http-equiv='Content-Type' content='text/html; charset=windows-1251' />
<script src='http://code.jquery.com/jquery-latest.js'></script>
<!--
<script src="https://code.angularjs.org/1.3.9/angular.min.js"></script>
<script src="https://code.angularjs.org/1.3.9/angular-route.js"></script>
-->
<style type='text/css'>
</style>
<script type='text/javascript'>
$(function(){
$(':checkbox').change(function(){
setTimeout((function(Type){
return function(){alert(Type);}
})(this.checked),1)
});
});
</script>
</head>
<body>
<input type='checkbox' />
</body>
</html>