Firstname Property



 
The Firstname property contains the first name of the current user.


Syntax

    [str=] SiteKiosk.Plugins("SiteCash").SessionSettings.Firstname
Possible Values
    String that retrieves the first name.

    The property is read only.
Remarks
    Session settings are only provided by some payment devices like smartcards.
Examples
    The following example shows the first name of the user.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    alert(SiteKiosk.Plugins("SiteCash").SessionSettings.Firstname);
    </SCRIPT>
    

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

Back to top