event.width : Event Object « Event « JavaScript Tutorial






The width property refers to the width of a window or frame.

It is set during the RESIZE event to the new width of window or frame being resized.

<html>
    <head>
    <title>Example of the event.width property</title>
    </head>
    <body>
    <script language = JavaScript>
    <!--
    function handle(evnt){
        alert("An RESIZE event has occurred. The new width of the window is: " + evnt.height);
        return true;
    }
    window.onresize = handle;
    -->
    </script>
    Resize browser to see the result
    </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