ItemText Property
The ItemText property contains the title of the window.
Syntax
[string=] WindowInfo.ItemText
|
Possible Values
String that retrieves the title.
|
The property is read only.
Remarks
Examples
The following example shows the title of the current page in an alert window.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
thiswindow = SiteKiosk.WindowList.ActiveWindow;
alert(thiswindow.ItemText);
</SCRIPT>
|
Applies to
SiteKiosk v5.0 (and later versions).
Back to top