$(document).ready(function() {
$('#test').qrcode({
'url' : 'http://jquery.com',
'width' : 300,
'height' : 300,
'qrsize' : 100
});
// for facebook qr like buttons:
$('#like').qrcode({
'url' : 'https://www.facebook.com/GrizzlyGmbH',
'width' : 300,
'height' : 300,
'qrsize' : 100
});
});
This code will add a QR-Code to the div '#test'.
url
String - users will be redirected to this URL when scanning the QR-Codewidth
Integer - image width in pixelheight
Integer - image height in pixelqrsize
Integer - quality of the QR-Code in pixel
Will be added shortly.