Number Property
The Number property contains the credit card number.
Syntax
SiteKiosk.Plugins("SiteCash").Devices("CreditCard").Number [=str]
|
Possible Values
String that specifies or retrieves the card number.
|
The property is read/write.
Remarks
Examples
The following example shows the card number in an alert window.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
creditcard = SiteKiosk.Plugins("SiteCash").Devices("CreditCard");
ccardinfo = creditcard.CreateCardInfo();
alert(ccardinfo.Number);
</SCRIPT>
|
Applies to
SiteKiosk v5.0 (and later versions).
Back to top