Jquery Qrcode

qrcode generation standalone (doesn't depend on external services)
Alternatives To Jquery Qrcode
Project NameStarsDownloadsRepos Using ThisPackages Using ThisMost Recent CommitTotal ReleasesLatest ReleaseOpen IssuesLicenseLanguage
Whatsapp Web Reveng5,771
5 months ago159mitJavaScript
Reverse engineering WhatsApp Web.
Jquery Qrcode4,538
85 years ago1January 19, 201489mitJavaScript
qrcode generation standalone (doesn't depend on external services)
Qrgen1,3913791710 months ago3March 28, 2014Java
a simple QRCode generation api for java built on top ZXING
Qrcode Rust34136172 years ago24February 23, 202018otherRust
QR code encoder in Rust.
Qr.dart27942725 days ago15April 12, 20222bsd-3-clauseDart
Dart QR code generation library.
Gauth75716 years ago5September 12, 20162mitPHP
Google Authenticator Code Validation and Generation
Qr58
3 months agogpl-3.0C
IEC18004 (QR) 2D barcode generation library and command line
Qr Code Generator57
8 years ago2Swift
A demo app for QR Code Generation
Prawn Qrcode483415 months ago13June 16, 20201apache-2.0Ruby
An extension to prawn for easy QR Code generation/rendering
Qr.js35
11 years agoJavaScript
Simple HTML5 Canvas-based QR Code generation
Alternatives To Jquery Qrcode
Select To Compare


Alternative Project Comparisons
Readme

jquery.qrcode.js

jquery.qrcode.js is jquery plugin for a pure browser qrcode generation. It allow you to easily add qrcode to your webpages. It is standalone, less than 4k after minify+gzip, no image download. It doesnt rely on external services which go on and off, or add latency while loading. It is based on a library which build qrcode in various language. jquery.qrcode.js wraps it to make it easy to include in your own code.

Show, don't tell, here is a example

How to Use It

Let me walk you thru it. First include it in your webpage with the usual script tag

<script type="text/javascript" src="jquery.qrcode.min.js"></script>

Then create a DOM element which gonna contains the generated qrcode image. Lets say a div

<div id="qrcode"></div>

Then you add the qrcode in this container by

jquery('#qrcode').qrcode("this plugin is great");

This is it. see it live.

You can set the height and width of the generated qrcode:

jquery('#qrcode').qrcode({width: 64,height: 64,text: "size doesn't matter"});

Conclusion

jquery.qrcode.js is available on github here under MIT license. If you hit bugs, fill issues on github. Feel free to fork, modify and have fun with it :)

Popular Generation Projects
Popular Qrcode Projects
Popular Software Development Categories

Get A Weekly Email With Trending Projects For These Categories
No Spam. Unsubscribe easily at any time.
Javascript
Generation
Qrcode
Webpage