Skip to content

Instantly share code, notes, and snippets.

@VxJasonxV
Created March 1, 2016 05:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save VxJasonxV/8c6da5bc0d18de478acf to your computer and use it in GitHub Desktop.
Save VxJasonxV/8c6da5bc0d18de478acf to your computer and use it in GitHub Desktop.
jQuery QRCode generator that only works for machines
$.ajax({
url: "https://chart.googleapis.com/chart?cht=qr&chs=200x200&chl=" + this.window.location,
context: document.body
}).done(function(data) {
$( this ).append( data );
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment