OnSessionEnd Event



 
Fires when the session ends.


Syntax

    SiteKiosk.Plugins("SiteCash").OnSessionEnd = 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 a session ends.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    SiteKiosk.Plugins("SiteCash").OnSessionEnd = OnSessionEnd;
    function OnSessionEnd()
    {
       alert("The session ends.");
    }
    </SCRIPT>
    

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

Back to top