event.height : Event Object : Event JAVASCRIPT TUTORIALS


JAVASCRIPT TUTORIALS » Event » Event Object »

 

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>







HTML code for linking to this page:

Follow Navioo On Twitter

JAVASCRIPT TUTORIALS

 Navioo Event
» Event Object