mirror of
https://github.com/eworm-de/routeros-scripts.git
synced 2025-12-07 02:19:29 +00:00
4 lines
137 B
JavaScript
4 lines
137 B
JavaScript
/* copy code to clipboard */
|
|
function CopyToClipboard(element) {
|
|
navigator.clipboard.writeText(element.firstElementChild.innerHTML);
|
|
}
|