URL Property



 
The URL property contains the URL of the favorite.


Syntax

    [str=] SiteKiosk.Favorites.Item(index).URL
Possible Values
    String that retrieves the URL.

    The property is read only.
Remarks
    None.
Examples
    The following example shows the URL of the first existing favorite in an alert window.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    alert(SiteKiosk.Favorites.Item(1).URL);
    </SCRIPT>

Applies to
    SiteKiosk v5.5 (and later versions).

Back to top