HTML
6
Вклад в тег
<div>
<input type="button">
</div>
div{
width: 300px;
height: 300px;
background: black;
text-align: center;
}
input{
width: 100px;
height: 30px;
margin-top: 120px;
}
$('div').click(function(){
$(this).toggleClass('active');
});
$('input').click(function(a){
a.stopPropagation();
});