Skip to content

Instantly share code, notes, and snippets.

@Prinzhorn
Last active December 25, 2015 22:59
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Prinzhorn/7053527 to your computer and use it in GitHub Desktop.
Save Prinzhorn/7053527 to your computer and use it in GitHub Desktop.
QR code bookmarklet

Just add the snipped as a bookmarklet and instantly turn the current website's URL in a QR code. Very useful when you quickly want to open the page on mobile.

(function(w) {w.location = 'https://chart.googleapis.com/chart?chs=256x256&cht=qr&chl=' + encodeURIComponent(w.location.href) + '&chld=L|1&choe=UTF-8';}(window));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment