Skip to content

Instantly share code, notes, and snippets.

@sevastos
Created January 26, 2013 13:00
Show Gist options
  • Save sevastos/4642220 to your computer and use it in GitHub Desktop.
Save sevastos/4642220 to your computer and use it in GitHub Desktop.
QRit - QR generation code of the current page
javascript:(function(){if(document.getElementById('qrit'))document.removeChild(document.getElementById('qrit'));qrimg=document.createElement('img');qrimg.setAttribute('style','position:fixed;top:0;left:0;z-index:9999;padding:5px;background-color:#fff');qrimg.setAttribute('id','qrit');qrimg.setAttribute('src','http://chart.apis.google.com/chart?cht=qr&chs=300x300&chl='+encodeURI(document.location.href));document.body.appendChild(qrimg);})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment