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