JavaScript DHTML/Event onMethod/onResizeStart

Материал из Web эксперт
Перейти к: навигация, поиск

"onResizeStart" Example

   <source lang="html4strict">
   

<html> <head> <script language="JavaScript">

   function function1() {
       alert("The "+event.type+" event fired")
   }

</script> </head> <body>

   <a id="myL" href="" contenteditable=true onresizestart="function1()">
       <img src="http://www.wbex.ru/style/logo.png" 
            alt="www.wbex.ru" 
            width="79" 
            height="99">
   </a>
   Resize me

</body> </html>


     </source>