2024-01-23 19:11:51 -04:00
|
|
|
function copy_to_clipboard() {
|
2024-01-24 16:49:10 +00:00
|
|
|
const element_id = document.getElementById("system_information");
|
|
|
|
|
const text_to_copy = element_id.value;
|
2024-01-23 19:11:51 -04:00
|
|
|
|
|
|
|
|
navigator.clipboard.writeText(text_to_copy)
|
|
|
|
|
.then(function() {
|
|
|
|
|
console.log('Text successfully copied to clipboard');
|
|
|
|
|
})
|
|
|
|
|
.catch(function(err) {
|
|
|
|
|
console.error('Unable to copy text to clipboard', err);
|
|
|
|
|
});
|
2024-01-24 16:49:10 +00:00
|
|
|
}
|