Skip to content

Instantly share code, notes, and snippets.

@skammer
Created April 27, 2011 20:50
Show Gist options
  • Save skammer/945173 to your computer and use it in GitHub Desktop.
Save skammer/945173 to your computer and use it in GitHub Desktop.
Add QR Codes to Android Market
// Add handy QR Codes to Android Market.
// For ~/.js
var url = encodeURIComponent(window.location.href);
var title = $("h1.doc-banner-title").text();
var dimentions = "276x276";
var request_url = "http://chart.apis.google.com/chart?cht=qr&chs="+
dimentions+
"&chl=MECARD%3AN%3A"+
title+
"%3BURL%3A"+
url+
"%3B%3B";
$("<img />").attr("src", request_url).attr("title", title).prependTo(".doc-similar.padded-content5");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment