event.height : Event Object « Event « JavaScript Tutorial






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>








15.1.Event Object
15.1.1.Event
15.1.2.event.data
15.1.3.event.height
15.1.4.event.layerX
15.1.5.event.layerY
15.1.6.event.pageX
15.1.7.event.pageY
15.1.8.event.screenX
15.1.9.event.screenY
15.1.10.event.target
15.1.11.event.type
15.1.12.event.which
15.1.13.event.width
15.1.14.Event.ABORT
15.1.15.Event.CHANGE
15.1.16.Add event handler to form