OnURLAddedToHistory Event



 
Fires when an URL is added to the browser history.


Syntax

    SiteKioskWindow.SiteKioskWebBrowser.OnURLAddedToHistory = handler
Parameters
    abs_NewURL String that contains the URL.
Remarks
    The object that caused the event can be referenced in the event function using "this".
Examples
    The following example shows an alert window when an entry was added to the history.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    SiteKioskWindow.SiteKioskWebBrowser.OnURLAddedToHistory = OURLAdded;
    function OURLAdded(abs_NewURL)
    {
       alert("New history entry: " + abs_NewURL);
    }
    </SCRIPT>

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

Back to top