Navigate Method



 
The Navigate method navigates to the URL displayed in the address field.


Syntax

    document.all["id_name"].Navigate()
    
Return Value
    None.
Remarks
    This method works only from within a browser skin file.
Examples
    The following example navigates to the Internet address displayed in the address field.

    <html>
    <head>
    <SCRIPT TYPE="text/javascript">
    function SurfTo()
    {
       document.all["URLComboBox"].Navigate();
    }
    </SCRIPT>
    </head>
    <body>
    <OBJECT ID="URLComboBox" width="300" height="22px"
    CLASSID="CLSID:973BD82B-0F81-4C42-A222-C42CA47DA1D3">
      <PARAM NAME="BackColor" value="16777215">
      <PARAM NAME="FontName" VALUE="Tahoma">
      <PARAM NAME="FontSize" VALUE="8.00">
      <PARAM NAME="FontBold" VALUE="0">
      <PARAM NAME="FontItalic" VALUE="0">
      <PARAM NAME="ForeColor" VALUE="65280">
    </OBJECT>
    <br><br>
    <a href="javascript:SurfTo()">Surf to the displayed address</a>
    </body>
    </html>
    

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

Back to top