Give us feedback
mobile-qrcode
Mobile icon

Mobile QRCode

Stable version 1.0.0 (Compatible with OutSystems 11)
Other versions available for 10
Uploaded on 03 May 2021 by 
5.0
 (4 ratings)
mobile-qrcode

Mobile QRCode

Details
QRCode.js is javascript library for making QRCode. QRCode.js supports Cross-browser with HTML5 Canvas and table tag in DOM. QRCode.js has no dependencies.
Read more

QRCode.js

QRCode.js is javascript library for making QRCode. QRCode.js supports Cross-browser with HTML5 Canvas and table tag in DOM. QRCode.js has no dependencies.

Basic Usages

<div id="qrcode"></div>
<script type="text/javascript">
new QRCode(document.getElementById("qrcode"), "https://jindo.dev.naver.com/collie");
</script>

or with some options

<div id="qrcode"></div>
<script type="text/javascript">
var qrcode = new QRCode(document.getElementById("qrcode"), {
text: "https://jindo.dev.naver.com/collie",
width: 128,
height: 128,
colorDark : "#000000",
colorLight : "#ffffff",
correctLevel : QRCode.CorrectLevel.H
});
</script>

and you can use some methods

qrcode.clear(); // clear the code.
qrcode.makeCode("https://naver.com"); // make another code.

Browser Compatibility

IE6~10, Chrome, Firefox, Safari, Opera, Mobile Safari, Android, Windows Mobile, ETC.

License

MIT License

Release notes (1.0.0)
  • Upgrade to P11
  • Cleanup code
  • Bugfix, trigger now on the OnReady event
Reviews (2)
by 
2020-05-20
in version 1.0.1
Simple, strong, perfect! Thank you very much!
by 
2019-08-16
in version 1.0.1
Wonderful  and functional application. I tried a bunch of different ones as well and had to rewrite a bunch of JS to get it to work. This one finally does the trick.  I can generate a bunch of different QR codes now  (as opposed to only one, which would be generated after OnReady).
Thank you!!
Team