OnSecureLockIconChange Event



 
Fires when the security lock icon changes.


Syntax

    SiteKioskWindow.SiteKioskWebBrowser.OnSecureLockIconChange = handler
Parameters
    security Long value that contains the new security status.
Remarks Examples
    The following example shows an alert window when the security icon changes.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    SiteKioskWindow.SiteKioskWebBrowser.OnSecureLockIconChange = OSLIChange;
    function OSLIChange(security)
    {
       alert(security);
    }
    </SCRIPT>
    

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

Back to top