OnURLHistoryCleared Event



 
Fires when the history of the browser is cleared.


Syntax

    SiteKioskWindow.SiteKioskWebBrowser.OnURLHistoryCleared = handler
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 the history is cleared.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    SiteKioskWindow.SiteKioskWebBrowser.OnURLHistoryCleared = OnHCleared;
    function OnHCleared()
    {
       alert("The history has been cleared.");
    }
    </SCRIPT>

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

Back to top