blob: 9d6749c4aa629eabaf0fcb2ac356e900dab7d5a5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
function copyText() {
// Get the text field
var roomLink = document.getElementById("roomlink");
// Select the text field
roomLink.select();
roomLink.setSelectionRange(0, 99999); // For mobile devices
// Copy the text inside the text field
navigator.clipboard.writeText(roomLink.value);
// Alert the copied text
alert("Copied the text: " + roomLink.value);
}
|