Skip to content

diewland/promptpay-qr-js

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

promptpay-qr-js

PromptPay QR-Code Javascript Library [ demo ]

Examples

// id card
var promptpay_text = PromptPayQR.gen_text("1234567890123");

// telephone number
var promptpay_text = PromptPayQR.gen_text("0891234567");

// specific amount
var promptpay_text = PromptPayQR.gen_text("1234567890123", 50); // by id-card 50 baht
var promptpay_text = PromptPayQR.gen_text("0891234567", 100);   // by tel-no 100 baht

// return null when account_id not match
PromptPayQR.gen_text("12345") == null; // true

References