Displays all window attribute settings, of the named window, when the window was created with JSV_openWindow, or defined by JSV_defineWindow.

Syntax

JSV_showWindowDefintion(winName)

Returns

n/a

Parameters

The JSV_showWindowDefintion function uses the following arguments.

Argument Description
winName The name of a window that may have been created using either JSV_openWindow or JSV_defineWindow.

Remarks

For the developer to manipulate the window (e.g., programmatically close, blur or focus the window), the name of the window definition handle is jsvWDH.

Dependencies

n/a

Example

The following lines of code

function windowTest() {
    var myWindow = "Jack_in_the_Box";
    JSV_showWindowDefintion(myWindow);
    var dummy =
        JSV_openWindow(myWindow,
            'testpage.htm',
            'menubar=1,status=1,scrollbars=1,resizable=1,width=580,height=240,left=40,top=40,screenX=40,screenY=40');
    JSV_showWindowDefintion(myWindow);
    jsvWDH.focus();
}

produce two new windows when the button is clicked