Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is it possible to generate a QR Code inside of the browser (across the popular browsers)? Ideally using JS and CSS, if HTML5 is required that is a possibility as well.

If so, does anyone know of a good script to do so?

share|improve this question
Why web-service doesn't suit your needs? – Orsol Jan 26 '11 at 16:48

2 Answers

up vote 3 down vote accepted

Actually yes, using Canvas you can draw QR code, and it can be saved as image. Look here - looks like pure HTML5 implementation, you can investigate its scripts qrcode.js and qrcanvas.js, as well as you can use it under the MIT license.

As it is written on that page, it won't work on IE, but you can use emulator there.

There is also another article, how to generate QR code using jQuery plugin, but they just use online generators (Kaywa & University of Bath services). This way is simpler and should work on all browsers ;)

share|improve this answer

In addition to the canvas library @Maxym mentioned, you could use jquery.qrcode.js. It doesn’t use a canvas, so it’s more compatible.

(Actually, it uses a big table with one cell for each pixel of the QR code.)

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.