Created
April 27, 2011 20:50
-
-
Save skammer/945173 to your computer and use it in GitHub Desktop.
Add QR Codes to Android Market
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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