Created
February 19, 2014 18:24
-
-
Save zenman/9098236 to your computer and use it in GitHub Desktop.
QR Code Gen
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<a href="https://chart.googleapis.com/chart?chs=150x150&cht=qr&chl=<?php the_permalink() ?>" download="QRCode">Download this Code</a> | |
<div id="qrcode"></div> | |
<script type="text/javascript"> | |
var img = document.createElement('img'); | |
img.src = 'https://chart.googleapis.com/chart?chs=150x150&cht=qr&chl=' + encodeURIComponent(document.location.href); | |
document.getElementById('qrcode').appendChild(img); | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment