Skip to content

Instantly share code, notes, and snippets.

@kjb
Created March 7, 2013 15:00
Show Gist options
  • Save kjb/5108618 to your computer and use it in GitHub Desktop.
Save kjb/5108618 to your computer and use it in GitHub Desktop.
Create a QR code for the current page. Add this code as a bookmark. From http://news.ycombinator.com/item?id=5331319
javascript:(function(){ var i = new Image();i.src = 'http://chart.apis.google.com/chart?cht=qr&chs=300x300&chl='+ encodeURIComponent(getSelection());i.onclick=function(){i.parentNode.removeChild(i)};i.setAttribute('style', 'position:fixed;top:50%;left:50%;margin:-150px 0 0 -150px;box-shadow:0 0 20px rgba(0,0,0,0.2)');document.body.appendChild(i)})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment