JavaScript DHTML/Event onMethod/onResize
"onResize" Example
<html>
<head>
<script language="JavaScript">
function function1() {
alert("The "+event.type+" event fired")
}
</script>
</head>
<body>
<a id="myL" href="" contenteditable=true onresize="function1()">
<img src="http://www.wbex.ru/style/logo.png"
alt="http://www.wbex.ru"
width="79"
height="99">
</a>
</body>
</html>