Skip to content

Instantly share code, notes, and snippets.

@tranch
Last active August 29, 2015 14:01
Show Gist options
  • Save tranch/37db0d9d572704608a94 to your computer and use it in GitHub Desktop.
Save tranch/37db0d9d572704608a94 to your computer and use it in GitHub Desktop.
A JavaScript bookmarklet used to generate a QR code image of current URL.
(function(doc) {
var API = 'https://api.qrserver.com/v1/create-qr-code/?size=150x150&data=',
img = doc.createElement('img');
img.style.cssText = 'position:fixed;top:5px;right:5px;z-index:2147483647';
img.src = API + encodeURI(location.href);
img.onclick = function() {
img.parentNode.removeChild(img)
};
doc.body.appendChild(img)
})(document)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment