Jump to content

User:Fæ/QRcode.js

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by (talk | contribs) at 21:03, 2 February 2011 (Update). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
Note: After saving, you have to bypass your browser's cache to see the changes. Google Chrome, Firefox, Microsoft Edge and Safari: Hold down the ⇧ Shift key and click the Reload toolbar button. For details and instructions about other browsers, see Wikipedia:Bypass your cache.
// Add QR code to toolbar

var tid="qrcode", ttxt="QR code", thref='http://qrcode.kaywa.com/img.php?s='+100+'&d='+location.href; // s=size, d=url
var tul=document.getElementById("t-whatlinkshere"),ta=document.createElement("a"),tli=document.createElement("li");
  ta.appendChild(document.createTextNode(ttxt));
  ta.href=thref;
  tli.appendChild(ta);
  tli.id=tid;
  tul.parentNode.appendChild(tli);