Skip to content

Instantly share code, notes, and snippets.

@zenman
Created February 19, 2014 18:24
Show Gist options
  • Save zenman/9098236 to your computer and use it in GitHub Desktop.
Save zenman/9098236 to your computer and use it in GitHub Desktop.
QR Code Gen
<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