Notification Method



 
The Notification method adds a notification entry to the log file.


Syntax

    SiteKiosk.Logfile.Notification(msg)
Parameters
    msg String that specifies the notification message.
Return Value
    None.
Remarks
    None.
Examples
    The following example adds a notification message to the SiteKiosk log file.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    SiteKiosk.Logfile.Notification('This is a notification.');
    </SCRIPT>
    

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

Back to top