Mega Code Archive

 
Categories / JavaScript Tutorial / Event
 

Event height

The height property controls the height of a window or frame during the RESIZE event. <html>     <head>     <title>Example of the event.height property</title>     </head>     <body>     <script language = JavaScript>     <!--     function handle(evnt){         alert("A RESIZE event has occurred. The new height of the window is: " + evnt.height);         return true;     }     window.onresize = handle;     -->     </script>     <form name="form1">       Drag the browser border to trigger the resize event     </form>     </body>     </html>