Generate a basic QRCode
masterTo create a simple QRCode, instantiate the QRCode class by passing a DOM element and the text string you want to encode. The library will automatically render the code into the provided container.
<div id="qrcode"></div>
<script type="text/javascript">
new QRCode(document.getElementById("qrcode"), "http://jindo.dev.naver.com/collie");
</script>