MooQrCode is a mootools plugin that allow you to create qrcode. It is based on QR Code Generator for JavaScript by http://www.d-project.com/
Now look at an example
(Fast & Easy)
//First, include required js files (Mootools & MooQrCode)
<script type="text/javascript" src="mootools.core.js"></script> <script type="text/javascript" src="mooqrcode.min.js"></script>
//Then create a container for the QRCode
<div id="QR_black"></div>
//Let the script do the job
document.id(window).addEvent('domready',function(){ document.id('QR_black').qrCode({'width':50,'height':50,'value':'This is an encrypted value'}); });
//That's all !
var oQrCode = new MooQRCode([options]);
A note on comments here: These comments are moderated. No comments will show up until they are approved. Comments that are not productive (i.e. inflammatory, rude, etc) will not be approved.
Found a bug in this plugin? Please report it this repository's Github Issues.
blog comments powered by Disqus