aboutsummaryrefslogtreecommitdiffstats
path: root/lib/clipboard.js
blob: 1d414892c1f2aafb9f28c265b6cbc38fcd35429e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
var Clipboard = {
  // http://groups.google.com/group/chromium-extensions/browse_thread/thread/49027e7f3b04f68/f6ab2457dee5bf55
  copy: function(data) {
          var textArea = document.createElement("textarea");
          textArea.style.position = "absolute";
          textArea.style.left = "-100%";
          textArea.value = data;

          document.body.appendChild(textArea);
          textArea.select();
          document.execCommand("Copy");
          document.body.removeChild(textArea);
        }
};