Есть код:
<html>
<head>
</head>
<script>
window.onload = function() {
document.getElementById('resize').onresize = function() {
alert('RESIZE!!!!1');
}
}
</script>
<body>
<div id="resize" style="width: 300px; height: 200px; background-color: red; resize: both; overflow: auto;">
</div>
</body>
</html>
При изменении размеров элемента должен выскакивать алерт, но почему-то этого не происходит. Подскажите почему?