QR code
Permalink
I found a simple code for display QR codehttp://en.wikipedia.org/wiki/QR_Code... of current page
Just paste it into your page
<script type="text/javascript"> // use current location as data var chl = new String(document.location); pos = chl.indexOf('#',0); if (pos >= 0) { chl = chl.substr(0,pos); } chl = escape(chl); // escaped data var chs = '150x150'; // Size: The largest possible area for all charts except maps is 300,000 pixels. As the maximum height or width is 1000 pixels, examples of maximum sizes are 1000x300, 300x1000, 600x500, 500x600, 800x375, and 375x800. var choe = 'UTF-8'; // Charset: Shift_JIS, UTF-8, or ISO-8859-1 var chld = 'L'; // L allows 7% of a QR code to be restored, M allows 15%, Q allows 25%, H allows 30% var margin = 4; // margin in rows/columns document.write(unescape('%3Cimg src="http://chart.apis.google.com/chart?chs='+chs+'&cht=qr&chl='+chl+'&choe='+choe+'&chld='+chld+'|'+margin+'" alt="QR Code" /%3E')); </script>
Just paste it into your page