Skip to content

Instantly share code, notes, and snippets.

@chadbrewbaker
Created December 2, 2012 16:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chadbrewbaker/4189748 to your computer and use it in GitHub Desktop.
Save chadbrewbaker/4189748 to your computer and use it in GitHub Desktop.
Example QR code invoice in Dwolla
<html>
<head>
<title>Invoice Example</title>
</head>
<body>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.5.2/jquery.min.js"></script>
<!-- Get these js libraries here:
https://github.com/jeromeetienne/jquery-qrcode/tree/master/src-->
<script type="text/javascript" src="https://raw.github.com/jeromeetienne/jquery-qrcode/master/src/jquery.qrcode.js"></script>
<script type="text/javascript" src="https://raw.github.com/jeromeetienne/jquery-qrcode/master/src/qrcode.js"></script>
<p>Table QR code</p>
<a href="https://www.dwolla.com/hub/812-714-1684?amount=1.00&memo=InvoiceHere&repeats=1&action=send"><div id="qrcodeTable"></div></a>
<p>HTML canvas QR code</p>
<a href="https://www.dwolla.com/hub/812-714-1684?amount=1.00&memo=InvoiceHere&repeats=1&action=send"><div id="qrcodeCanvas"></div></a>
<script>
//jQuery('#qrcode').qrcode("this plugin is great");
jQuery('#qrcodeTable').qrcode({
render : "table",
text : "https://www.dwolla.com/hub/812-714-1684?amount=1.00&memo=InvoiceHere&repeats=1&action=send"
});
jQuery('#qrcodeCanvas').qrcode({
text : "https://www.dwolla.com/hub/812-714-1684?amount=1.00&memo=InvoiceHere&repeats=1&action=send"
});
</script>
</body>
</html>
@Shravya29
Copy link

Can you explain this code with comments or a basic algorithm?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment