Mega Code Archive

 
Categories / JavaScript Reference / Event Handlers Reference
 

OnResizeEnd Example

<html> <head> <script language="JavaScript">     function function1() {         alert('The '+event.type+' event fired')     } </script> </head> <body>     <a id="myL" href="http://www.rntsoft.com" contenteditable=true onresizeend="function1()">         <img src="http://www.rntsoft.com/style/logo.png"               alt="http://www.rntsoft.com"               width="79"               height="99">     </a> </body> </html>