Guest User

Untitled

a guest
Apr 25th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. async copyText(content) {
  2. try {
  3. await navigator.clipboard.writeText(content);
  4. } catch (e) {
  5. // polyfill if the browser doesn't support the clipboard api
  6. const textarea = document.createElement('textarea');
  7. textarea.style.opacity = 0;
  8. textarea.style.width = 0;
  9. textarea.style.height = 0;
  10. textarea.style.position = 'absolute';
  11. textarea.style.bottom = '-100%';
  12. textarea.style.left = '-100%';
  13. textarea.style.margin = 0;
  14. document.body.appendChild(textarea);
  15. textarea.value = content;
  16. textarea.select();
  17. document.execCommand('copy');
  18. textarea.remove();
  19. }
  20. },
Add Comment
Please, Sign In to add comment