Last active
July 16, 2024 16:25
-
-
Save artemsites/8d2878cc86048e58a445b458ca04efac to your computer and use it in GitHub Desktop.
This file contains 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
/** | |
* import { copyToClipboard } from "/src/utils/copyToClipboard.js" | |
* | |
* copyToClipboard("Этот текст будет скопирован в буфер обмена") | |
*/ | |
export function copyToClipboard(text, callback) { | |
const textarea = document.createElement('textarea') | |
textarea.value = text | |
document.body.appendChild(textarea) | |
textarea.select() | |
try { | |
document.execCommand('copy') | |
console.log('Текст успешно скопирован') | |
callback() | |
} catch (err) { | |
console.error('Не удалось скопировать текст: ', err) | |
} | |
document.body.removeChild(textarea) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment