Легко
<html>
<head>
</head>
<body>
<div id="d">block</div><br>
<button id=check>check</button>
<script>
c=0
d.onclick=function(){c++}
check.onclick=function(){alert(c)}
</script>
</body>
</html>
Можешь закрыть переменную счетчика от "посторонних глаз"
<html>
<head>
</head>
<body>
<div id="d">block</div><br>
<button id=check>check</button>
<script>
;(function(){
var c=0
d.onclick=function(){c++}
check.onclick=function(){alert(c)}
}())
</script>
</body>
</html>