QR code generation in jQuery

by nnur ffarazi

HTML

<script src="https://raw.github.com/jeromeetienne/jquery-qrcode/77aa3c30cb6cf852f5c2f908bfdb65eb991da121/src/jquery.qrcode.js"></script>
<script src="https://raw.github.com/jeromeetienne/jquery-qrcode/master/src/qrcode.js"></script>
    
<div id="test"></div>

JavaScript

// Sample usage of jquery-qrcode library
// https://github.com/jeromeetienne/jquery-qrcode

$(document).ready(function() {
    $('#test').qrcode({width: 400,height: 400, text: "https://github.com/jeromeetienne/jquery-qrcode"});
});