всем привет! назрел вопрос.
<style>
div {
position:absolute;
width:100px;
height:100px;
background: red;
}
</style>
<script>
function f(){
var div = document.getElementsByTagName('div')[0];
div.style.opacity = 0;
setInterval(function(){div.style.opacity += .1;} , 10);
}
</script>
<body onclick='f();'>
<div></div>
</body>
opacity не увеличивается более чем на 0.1. Вот собсна и не пойму где я заглох?