Advertisement
Guest User

Untitled

a guest
Dec 9th, 2016
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. javascript:(function () {
  2. var text = "[" + document.title + '](' + document.URL + ')';
  3.  
  4. if (window.clipboardData && window.clipboardData.setData) {
  5. return clipboardData.setData("Text", text);
  6.  
  7. } else if (document.queryCommandSupported && document.queryCommandSupported("copy")) {
  8. var textarea = document.createElement("textarea");
  9. textarea.textContent = text;
  10. textarea.style.position = "fixed";
  11. document.body.appendChild(textarea);
  12. textarea.select();
  13. try {
  14. return document.execCommand("copy");
  15. } catch (ex) {
  16. console.warn("Copy to clipboard failed.", ex);
  17. return false;
  18. } finally {
  19. document.body.removeChild(textarea);
  20. }
  21. }
  22. })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement